Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 54e374c

Browse files
committed
Add NUMERICOID to this script. This script can be run occasionally to
make sure that we are using the right #defines in pgmodule.c but the OIDs are never actually expected to change.
1 parent 9c50a00 commit 54e374c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/interfaces/python/mkdefines

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ for l in open("/usr/local/pgsql/src/include/catalog/pg_type.h").readlines():
77
tokens = string.split(l)
88
if len(tokens) == 0 or tokens[0] != "#define": continue
99

10-
if tokens[1] in ('CASHOID', 'INT2OID', 'INT4OID', 'OIDOID', 'FLOAT4OID', 'FLOAT8OID'):
10+
if tokens[1] in ('CASHOID', 'INT2OID', 'INT4OID', 'OIDOID', 'FLOAT4OID', 'FLOAT8OID', 'NUMERICOID'):
1111
print l,

0 commit comments

Comments
 (0)