Add int64 -> int8 mapping to genbki

Per discussion with Tom and Andrew, 64bit integers are no longer a
problem for the catalogs, so go ahead and add the mapping from the C
int64 type to the int8 SQL identification to allow using them.

Patch by Adam Brightwell
This commit is contained in:
Stephen Frost 2014-11-25 11:48:16 -05:00
parent b3fc6727ce
commit 25976710df
1 changed files with 1 additions and 0 deletions

View File

@ -33,6 +33,7 @@ sub Catalogs
my %RENAME_ATTTYPE = (
'int16' => 'int2',
'int32' => 'int4',
'int64' => 'int8',
'Oid' => 'oid',
'NameData' => 'name',
'TransactionId' => 'xid');