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
pull/14/head
Stephen Frost 11 years ago
parent b3fc6727ce
commit 25976710df
  1. 1
      src/backend/catalog/Catalog.pm

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

Loading…
Cancel
Save