Fix a typo in pg_repack.c file.

This commit is contained in:
Masahiko Sawada 2017-08-05 20:16:31 +09:00
parent f8ba09fd31
commit 34e71adbbd

View File

@ -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;