Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Frost2014-11-25 16:48:16 +0000
committerStephen Frost2014-11-25 17:12:19 +0000
commit25976710dfd8611d3fc79c0c1e20179ff7a940ec (patch)
tree3023a3fb1f543003ab53b0078e5e4847620bf124 /src/backend
parentb3fc6727ce54a16ae9227bcccfebfa028ac5b16f (diff)
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
Diffstat (limited to 'src/backend')
-rw-r--r--src/backend/catalog/Catalog.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/catalog/Catalog.pm b/src/backend/catalog/Catalog.pm
index eb91c536834..523b37995db 100644
--- a/src/backend/catalog/Catalog.pm
+++ b/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');