diff options
author | Robert Haas <rhaas@postgresql.org> | 2012-10-08 10:15:15 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2012-10-08 10:15:15 -0400 |
commit | 08c8058ce90cf4b2644cabfa7e5f66e9da8ddd7d (patch) | |
tree | 3b329bb0f862c60158dbdd9c3d0e071c6a47e247 /src | |
parent | b28cc92d7d7c9557aab5088666140330fce48b1d (diff) | |
download | postgresql-08c8058ce90cf4b2644cabfa7e5f66e9da8ddd7d.tar.gz postgresql-08c8058ce90cf4b2644cabfa7e5f66e9da8ddd7d.zip |
Add #define for UUIDOID.
Phil Sorber and Thom Brown. Reviewed by Albe Laurenz.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/catalog/pg_type.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/catalog/pg_type.h b/src/include/catalog/pg_type.h index 86be9983e93..d0fe7c5399f 100644 --- a/src/include/catalog/pg_type.h +++ b/src/include/catalog/pg_type.h @@ -573,6 +573,7 @@ DATA(insert OID = 2211 ( _regtype PGNSP PGUID -1 f b A f t \054 0 2206 0 arra /* uuid */ DATA(insert OID = 2950 ( uuid PGNSP PGUID 16 f b U f t \054 0 0 2951 uuid_in uuid_out uuid_recv uuid_send - - - c p f 0 -1 0 0 _null_ _null_ _null_ )); DESCR("UUID datatype"); +#define UUIDOID 2950 DATA(insert OID = 2951 ( _uuid PGNSP PGUID -1 f b A f t \054 0 2950 0 array_in array_out array_recv array_send - - array_typanalyze i x f 0 -1 0 0 _null_ _null_ _null_ )); /* text search */ |