Whitespace cleanup.

This commit is contained in:
Josh Kupershmidt 2016-05-07 09:24:05 -04:00
parent de060af137
commit eb2e9c39fb

View File

@ -1392,13 +1392,13 @@ repack_one_table(repack_table *table, const char *orderby)
elog(DEBUG2, "---- drop ----"); elog(DEBUG2, "---- drop ----");
command("BEGIN ISOLATION LEVEL READ COMMITTED", 0, NULL); command("BEGIN ISOLATION LEVEL READ COMMITTED", 0, NULL);
if (!(lock_exclusive(connection, utoa(table->target_oid, buffer), if (!(lock_exclusive(connection, utoa(table->target_oid, buffer),
table->lock_table, FALSE))) table->lock_table, FALSE)))
{ {
elog(WARNING, "lock_exclusive() failed in connection for %s", elog(WARNING, "lock_exclusive() failed in connection for %s",
table->target_name); table->target_name);
goto cleanup; goto cleanup;
} }
params[1] = utoa(temp_obj_num, indexbuffer); params[1] = utoa(temp_obj_num, indexbuffer);
command("SELECT repack.repack_drop($1, $2)", 2, params); command("SELECT repack.repack_drop($1, $2)", 2, params);