1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-26 12:21:12 +03:00

Re-apply Darren's char2-16 removal code.

This commit is contained in:
Bruce Momjian
1998-04-26 04:12:15 +00:00
parent 9260d4b440
commit 0d203b745d
63 changed files with 342 additions and 1341 deletions

View File

@ -6,7 +6,7 @@
*
* Copyright (c) 1995, Regents of the University of California
*
* $Id: postgres.h,v 1.15 1998/04/07 18:11:53 momjian Exp $
* $Id: postgres.h,v 1.16 1998/04/26 04:08:18 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];