diff options
| author | Tom Lane | 2001-08-10 20:52:25 +0000 |
|---|---|---|
| committer | Tom Lane | 2001-08-10 20:52:25 +0000 |
| commit | ef6ccb0bcc62150d49690a1d95d1de3562c8d9ce (patch) | |
| tree | f96ad730ce95762de83938ef255884558aaa60ab /src/include | |
| parent | bf56f0759bdfa87f143c3abd09f893a5f530fe88 (diff) | |
Cleanup some minor oversights in optional-OIDs stuff.
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/catalog/pg_largeobject.h | 4 | ||||
| -rw-r--r-- | src/include/catalog/pg_proc.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/include/catalog/pg_largeobject.h b/src/include/catalog/pg_largeobject.h index be1283d67e..030ab177a2 100644 --- a/src/include/catalog/pg_largeobject.h +++ b/src/include/catalog/pg_largeobject.h @@ -8,7 +8,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: pg_largeobject.h,v 1.8 2001/08/10 18:57:40 tgl Exp $ + * $Id: pg_largeobject.h,v 1.9 2001/08/10 20:52:25 tgl Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki @@ -55,7 +55,7 @@ typedef FormData_pg_largeobject *Form_pg_largeobject; #define Anum_pg_largeobject_pageno 2 #define Anum_pg_largeobject_data 3 -extern Oid LargeObjectCreate(Oid loid); +extern void LargeObjectCreate(Oid loid); extern void LargeObjectDrop(Oid loid); extern bool LargeObjectExists(Oid loid); diff --git a/src/include/catalog/pg_proc.h b/src/include/catalog/pg_proc.h index cfb8b051fa..63480d4965 100644 --- a/src/include/catalog/pg_proc.h +++ b/src/include/catalog/pg_proc.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: pg_proc.h,v 1.201 2001/08/10 18:57:40 tgl Exp $ + * $Id: pg_proc.h,v 1.202 2001/08/10 20:52:25 tgl Exp $ * * NOTES * The script catalog/genbki.sh reads this file and generates .bki @@ -1483,7 +1483,7 @@ DESCR("convert int4 to reltime"); DATA(insert OID = 1215 ( obj_description PGUID 14 f t f t 2 f 25 "26 19" 100 0 0 100 "select description from pg_description where objoid = $1 and classoid = (select oid from pg_class where relname = $2) and objsubid = 0" - )); DESCR("get description for object id and catalog name"); -DATA(insert OID = 1216 ( col_description PGUID 14 f t f t 2 f 25 "26 23" 100 0 0 100 "select description from pg_description where objoid = $1 and classoid = (select oid from pg_class where relname = 'pg_class') and objsubid = $2" - )); +DATA(insert OID = 1216 ( col_description PGUID 14 f t f t 2 f 25 "26 23" 100 0 0 100 "select description from pg_description where objoid = $1 and classoid = (select oid from pg_class where relname = \'pg_class\') and objsubid = $2" - )); DESCR("get description for table column"); DATA(insert OID = 1217 ( date_trunc PGUID 12 f t f t 2 f 1184 "25 1184" 100 0 0 100 timestamp_trunc - )); |
