diff options
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/catalog/pg_shadow.h | 4 | ||||
| -rw-r--r-- | src/include/catalog/pg_type.h | 3 | ||||
| -rw-r--r-- | src/include/config.h.in | 3 | ||||
| -rw-r--r-- | src/include/mb/pg_wchar.h | 4 |
4 files changed, 9 insertions, 5 deletions
diff --git a/src/include/catalog/pg_shadow.h b/src/include/catalog/pg_shadow.h index 781caca899b..9c4718689ec 100644 --- a/src/include/catalog/pg_shadow.h +++ b/src/include/catalog/pg_shadow.h @@ -8,7 +8,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_shadow.h,v 1.5 1999/12/17 01:05:31 momjian Exp $ + * $Id: pg_shadow.h,v 1.6 2000/01/15 18:30:34 petere Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki @@ -72,6 +72,6 @@ typedef FormData_pg_shadow *Form_pg_shadow; * user choices. * ---------------- */ -DATA(insert OID = 0 ( POSTGRES PGUID t t t t PASSWORD _null_ )); +DATA(insert OID = 0 ( POSTGRES PGUID t t t t _null_ _null_ )); #endif /* PG_SHADOW_H */ diff --git a/src/include/catalog/pg_type.h b/src/include/catalog/pg_type.h index dec945f35f6..c297eb860de 100644 --- a/src/include/catalog/pg_type.h +++ b/src/include/catalog/pg_type.h @@ -7,7 +7,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_type.h,v 1.75 2000/01/11 04:02:28 tgl Exp $ + * $Id: pg_type.h,v 1.76 2000/01/15 18:30:34 petere Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki @@ -328,6 +328,7 @@ DATA(insert OID = 1012 ( _cid PGUID -1 -1 f b t \054 0 29 array_in array_out DATA(insert OID = 1013 ( _oidvector PGUID -1 -1 f b t \054 0 30 array_in array_out array_in array_out i _null_ )); DATA(insert OID = 1014 ( _bpchar PGUID -1 -1 f b t \054 0 1042 array_in array_out array_in array_out i _null_ )); DATA(insert OID = 1015 ( _varchar PGUID -1 -1 f b t \054 0 1043 array_in array_out array_in array_out i _null_ )); +DATA(insert OID = 1016 ( _int8 PGUID -1 -1 f b t \054 0 20 array_in array_out array_in array_out d _null_ )); DATA(insert OID = 1017 ( _point PGUID -1 -1 f b t \054 0 600 array_in array_out array_in array_out d _null_ )); DATA(insert OID = 1018 ( _lseg PGUID -1 -1 f b t \054 0 601 array_in array_out array_in array_out d _null_ )); DATA(insert OID = 1019 ( _path PGUID -1 -1 f b t \054 0 602 array_in array_out array_in array_out d _null_ )); diff --git a/src/include/config.h.in b/src/include/config.h.in index e1b9bf8482e..472bb68bf6a 100644 --- a/src/include/config.h.in +++ b/src/include/config.h.in @@ -61,6 +61,9 @@ /* Set to 1 if you want CYR_RECODE (cyrillic recode) */ #undef CYR_RECODE +/* Set to 1 if you want to use multibyte characters */ +#undef MULTIBYTE + /* Set to 1 if you want to Enable ASSERT CHECKING */ #undef USE_ASSERT_CHECKING diff --git a/src/include/mb/pg_wchar.h b/src/include/mb/pg_wchar.h index da33f5bf0fb..848c345ac5a 100644 --- a/src/include/mb/pg_wchar.h +++ b/src/include/mb/pg_wchar.h @@ -1,10 +1,10 @@ -/* $Id: pg_wchar.h,v 1.11 1999/07/17 16:25:28 momjian Exp $ */ +/* $Id: pg_wchar.h,v 1.12 2000/01/15 18:30:35 petere Exp $ */ #ifndef PG_WCHAR_H #define PG_WCHAR_H +#include "postgres.h" #include <sys/types.h> -#include "c.h" #define SQL_ASCII 0 /* SQL/ASCII */ #define EUC_JP 1 /* EUC for Japanese */ |
