diff options
author | Bruce Momjian <bruce@momjian.us> | 2011-01-26 16:21:19 -0500 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2011-01-26 16:21:19 -0500 |
commit | 4fec63f94e8edb6181eb3e1e25e979062ab17450 (patch) | |
tree | 705d6a77497d9738ac83745af05f823889a178c0 | |
parent | 00869024cb0164969957c1b3e8f6a11242a939e9 (diff) | |
download | postgresql-4fec63f94e8edb6181eb3e1e25e979062ab17450.tar.gz postgresql-4fec63f94e8edb6181eb3e1e25e979062ab17450.zip |
Per Peter E, use 'kB' for kilobyte, not 'K'.
-rw-r--r-- | contrib/pg_test_fsync/pg_test_fsync.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/contrib/pg_test_fsync/pg_test_fsync.c b/contrib/pg_test_fsync/pg_test_fsync.c index 23800d60339..d07548322cf 100644 --- a/contrib/pg_test_fsync/pg_test_fsync.c +++ b/contrib/pg_test_fsync/pg_test_fsync.c @@ -175,9 +175,9 @@ test_sync(int writes_per_op) bool fs_warning = false; if (writes_per_op == 1) - printf("\nCompare file sync methods using one %dK write:\n", XLOG_BLCKSZ_K); + printf("\nCompare file sync methods using one %dkB write:\n", XLOG_BLCKSZ_K); else - printf("\nCompare file sync methods using two %dK writes:\n", XLOG_BLCKSZ_K); + printf("\nCompare file sync methods using two %dkB writes:\n", XLOG_BLCKSZ_K); printf("(in wal_sync_method preference order, except fdatasync\n"); printf("is Linux's default)\n"); @@ -391,14 +391,14 @@ static void test_open_syncs(void) { printf("\nCompare open_sync with different write sizes:\n"); - printf("(This is designed to compare the cost of writing 16K\n"); + printf("(This is designed to compare the cost of writing 16kB\n"); printf("in different write open_sync sizes.)\n"); - test_open_sync("16K open_sync write", 16); - test_open_sync(" 8K open_sync writes", 8); - test_open_sync(" 4K open_sync writes", 4); - test_open_sync(" 2K open_sync writes", 2); - test_open_sync(" 1K open_sync writes", 1); + test_open_sync("16kB open_sync write", 16); + test_open_sync(" 8kB open_sync writes", 8); + test_open_sync(" 4kB open_sync writes", 4); + test_open_sync(" 2kB open_sync writes", 2); + test_open_sync(" 1kB open_sync writes", 1); } /* @@ -517,7 +517,7 @@ test_non_sync(void) /* * Test a simple write without fsync */ - printf("\nNon-Sync'ed %dK writes:\n", XLOG_BLCKSZ_K); + printf("\nNon-Sync'ed %dkB writes:\n", XLOG_BLCKSZ_K); printf(LABEL_FORMAT, "write"); fflush(stdout); |