From 34e71adbbd82191a3f179b89007f26e14e81766c Mon Sep 17 00:00:00 2001 From: Masahiko Sawada Date: Sat, 5 Aug 2017 20:16:31 +0900 Subject: [PATCH] Fix a typo in pg_repack.c file. --- bin/pg_repack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/pg_repack.c b/bin/pg_repack.c index 43e3f23..2be03cd 100644 --- a/bin/pg_repack.c +++ b/bin/pg_repack.c @@ -821,7 +821,7 @@ repack_one_database(const char *orderby, char *errbuf, size_t errsize) appendStringInfoString(&sql, tablespace); appendStringInfoString(&sql, create_table_2); - /* Always append WITH NOT DATA to CREATE TABLE SQL*/ + /* Always append WITH NO DATA to CREATE TABLE SQL*/ appendStringInfoString(&sql, " WITH NO DATA"); table.create_table = sql.data;