diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-03-30 17:28:21 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-03-30 17:28:21 +0000 |
commit | 57b5966405fb6e237676acef55973c064ac65a2a (patch) | |
tree | d2397c1d3308e56cd33c5f2f607e26129106ed4a /src/include/postgres.h | |
parent | 31c36102cab914f6664ee2db20c7732aeb51a02b (diff) | |
download | postgresql-57b5966405fb6e237676acef55973c064ac65a2a.tar.gz postgresql-57b5966405fb6e237676acef55973c064ac65a2a.zip |
The following uuencoded, gzip'd file will ...
1. Remove the char2, char4, char8 and char16 types from postgresql
2. Change references of char16 to name in the regression tests.
3. Rename the char16.sql regression test to name.sql. 4. Modify
the regression test scripts and outputs to match up.
Might require new regression.{SYSTEM} files...
Darren King
Diffstat (limited to 'src/include/postgres.h')
-rw-r--r-- | src/include/postgres.h | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/src/include/postgres.h b/src/include/postgres.h index 896e8239db9..66d665cf9b8 100644 --- a/src/include/postgres.h +++ b/src/include/postgres.h @@ -6,7 +6,7 @@ * * Copyright (c) 1995, Regents of the University of California * - * $Id: postgres.h,v 1.13 1998/02/26 04:39:49 momjian Exp $ + * $Id: postgres.h,v 1.14 1998/03/30 17:24:31 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -19,7 +19,7 @@ * Oid regproc RegProcedure * aclitem * struct varlena - * char8 char16 int28 oid8 + * int28 oid8 * bytea text * NameData Name * oidint4 oidint2 oidname @@ -88,22 +88,6 @@ struct varlena typedef struct varlena bytea; typedef struct varlena text; -typedef struct char8 -{ - char data[8]; -} char8; - -/* ---------------- - * char16 - * ---------------- - */ -typedef struct char16 -{ - char data[16]; -} char16; - -typedef char16 *Char16; - typedef int2 int28[8]; typedef Oid oid8[8]; |