Merge pull request #110 from MasahikoSawada/change_format_identifier
Change format identifier of SPI_processed to uint64.
This commit is contained in:
commit
dfbedb63d9
@ -1306,8 +1306,8 @@ repack_index_swap(PG_FUNCTION_ARGS)
|
|||||||
orig_idx_oid);
|
orig_idx_oid);
|
||||||
execute(SPI_OK_SELECT, str.data);
|
execute(SPI_OK_SELECT, str.data);
|
||||||
if (SPI_processed != 1)
|
if (SPI_processed != 1)
|
||||||
elog(ERROR, "Could not find index 'index_%u', found %d matches",
|
elog(ERROR, "Could not find index 'index_%u', found %lu matches",
|
||||||
orig_idx_oid, SPI_processed);
|
orig_idx_oid, (uint64) SPI_processed);
|
||||||
|
|
||||||
tuptable = SPI_tuptable;
|
tuptable = SPI_tuptable;
|
||||||
desc = tuptable->tupdesc;
|
desc = tuptable->tupdesc;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user