aboutsummaryrefslogtreecommitdiff
path: root/src/include/postgres.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/postgres.h')
-rw-r--r--src/include/postgres.h20
1 files changed, 18 insertions, 2 deletions
diff --git a/src/include/postgres.h b/src/include/postgres.h
index 66d665cf9b8..12c818a4497 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.14 1998/03/30 17:24:31 momjian Exp $
+ * $Id: postgres.h,v 1.15 1998/04/07 18:11:53 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -19,7 +19,7 @@
* Oid regproc RegProcedure
* aclitem
* struct varlena
- * int28 oid8
+ * char8 char16 int28 oid8
* bytea text
* NameData Name
* oidint4 oidint2 oidname
@@ -88,6 +88,22 @@ 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];