Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a4880a commit 2bbd88fCopy full SHA for 2bbd88f
contrib/pg_test_fsync/pg_test_fsync.c
@@ -358,11 +358,11 @@ test_open_syncs(void)
358
printf("(This is designed to compare the cost of writing 16kB\n");
359
printf("in different write open_sync sizes.)\n");
360
361
- test_open_sync("16kB open_sync write", 16);
362
- test_open_sync(" 8kB open_sync writes", 8);
363
- test_open_sync(" 4kB open_sync writes", 4);
364
- test_open_sync(" 2kB open_sync writes", 2);
365
- test_open_sync(" 1kB open_sync writes", 1);
+ test_open_sync(" 1 * 16kB open_sync write", 16);
+ test_open_sync(" 2 * 8kB open_sync writes", 8);
+ test_open_sync(" 4 * 4kB open_sync writes", 4);
+ test_open_sync(" 8 * 2kB open_sync writes", 2);
+ test_open_sync("16 * 1kB open_sync writes", 1);
366
}
367
368
/*
0 commit comments