1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-01 21:31:19 +03:00

Rename oid8 -> oidvector and int28 -> int2vector. Cleanup of *out functions.

This commit is contained in:
Bruce Momjian
2000-01-10 16:13:23 +00:00
parent 3f03f74f36
commit 6456b17bc1
27 changed files with 119 additions and 120 deletions

View File

@@ -209,7 +209,7 @@ char tempBuf[TEXT_FIELD_SIZE+5];
break;
/* This is for internal use by SQLStatistics() */
case PG_TYPE_INT28: {
case PG_TYPE_INT2VECTOR: {
// this is an array of eight integers
short *short_array = (short *) ( (char *) rgbValue + rgbValueOffset);

View File

@@ -24,7 +24,7 @@
#define PG_TYPE_NAME 19
#define PG_TYPE_CHAR16 20
#define PG_TYPE_INT2 21
#define PG_TYPE_INT28 22
#define PG_TYPE_INT2VECTOR 22
#define PG_TYPE_INT4 23
#define PG_TYPE_REGPROC 24
#define PG_TYPE_TEXT 25
@@ -32,7 +32,7 @@
#define PG_TYPE_TID 27
#define PG_TYPE_XID 28
#define PG_TYPE_CID 29
#define PG_TYPE_OID8 30
#define PG_TYPE_OIDVECTOR 30
#define PG_TYPE_SET 32
#define PG_TYPE_CHAR2 409
#define PG_TYPE_CHAR4 410