Commit 25976710 authored by Stephen Frost's avatar Stephen Frost

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
parent b3fc6727
...@@ -33,6 +33,7 @@ sub Catalogs ...@@ -33,6 +33,7 @@ sub Catalogs
my %RENAME_ATTTYPE = ( my %RENAME_ATTTYPE = (
'int16' => 'int2', 'int16' => 'int2',
'int32' => 'int4', 'int32' => 'int4',
'int64' => 'int8',
'Oid' => 'oid', 'Oid' => 'oid',
'NameData' => 'name', 'NameData' => 'name',
'TransactionId' => 'xid'); 'TransactionId' => 'xid');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment