Skip to content

Commit

Permalink
Make compiler happy
Browse files Browse the repository at this point in the history
  • Loading branch information
za-arthur committed Oct 18, 2023
1 parent 31085db commit ce265da
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions bin/pg_repack.c
Original file line number Diff line number Diff line change
Expand Up @@ -894,7 +894,6 @@ repack_one_database(const char *orderby, char *errbuf, size_t errsize)
{
repack_table table;
StringInfoData copy_sql;
const char *tablespace_orig;
const char *ckey;
int c = 0;

Expand All @@ -919,7 +918,7 @@ repack_one_database(const char *orderby, char *errbuf, size_t errsize)
table.enable_trigger = getstr(res, i, c++);

table.create_table = getstr(res, i, c++);
tablespace_orig = getstr(res, i, c++); /* to be clobbered */
getstr(res, i, c++); /* tablespace_orig is clobbered */
table.copy_data = getstr(res, i , c++);
table.alter_col_storage = getstr(res, i, c++);
table.drop_columns = getstr(res, i, c++);
Expand Down

0 comments on commit ce265da

Please sign in to comment.