Skip to content
Snippets Groups Projects
Commit 25976710 authored by Stephen Frost's avatar Stephen Frost
Browse files

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
No related branches found
No related tags found
No related merge requests found
......@@ -33,6 +33,7 @@ sub Catalogs
my %RENAME_ATTTYPE = (
'int16' => 'int2',
'int32' => 'int4',
'int64' => 'int8',
'Oid' => 'oid',
'NameData' => 'name',
'TransactionId' => 'xid');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment