Skip to content

Commit 8c8ce49

Browse files
committed
Adjut push --forcest whitespace in PGDUCK_SERVER_DEBUG call
Signed-off-by: Marco Slot <[email protected]>
1 parent cfbc778 commit 8c8ce49

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

duckdb_pglake/src/fs/caching_file_system.cpp

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -200,12 +200,16 @@ CachingFileSystem::ShouldCacheOnWrite(CachingFSFileHandle &pg_lakeHandle, int64_
200200
int64_t cacheOnWriteMaxAllowedSize = setting.GetValue<uint64_t>();
201201
if (pg_lakeHandle.cacheOnWriteWrittenBytes + additionalByteCount >= cacheOnWriteMaxAllowedSize)
202202
{
203-
PGDUCK_SERVER_DEBUG("Total bytes will be written (%" PRId64 ") is greater than "
204-
"pg_lake_cache_on_write_max_size (%" PRId64 "). "
205-
"Disabling cache-on-write for this file %s%s.",
206-
pg_lakeHandle.cacheOnWriteWrittenBytes + additionalByteCount,
207-
cacheOnWriteMaxAllowedSize,
208-
pg_lakeHandle.cacheOnWritePath.c_str(), ".pgl-stage");
203+
PGDUCK_SERVER_DEBUG(
204+
"Total number of bytes that will be written (%" PRId64 ") is greater than "
205+
"pg_lake_cache_on_write_max_size (%" PRId64 "). "
206+
"Disabling cache-on-write for this file %s%s.",
207+
pg_lakeHandle.cacheOnWriteWrittenBytes + additionalByteCount,
208+
cacheOnWriteMaxAllowedSize,
209+
pg_lakeHandle.cacheOnWritePath.c_str(),
210+
".pgl-stage"
211+
);
212+
209213
return false;
210214
}
211215

0 commit comments

Comments
 (0)