Logging the table we are working on at info level

This commit is contained in:
Daniele Varrazzo
2013-04-17 17:48:05 +01:00
parent 5773c75b58
commit 08a8c943e5
3 changed files with 18 additions and 0 deletions

View File

@ -918,6 +918,8 @@ repack_one_table(const repack_table *table, const char *orderby)
initStringInfo(&sql);
elog(INFO, "repacking table \"%s\"", table->target_name);
elog(DEBUG2, "---- repack_one_table ----");
elog(DEBUG2, "target_name : %s", table->target_name);
elog(DEBUG2, "target_oid : %u", table->target_oid);