File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.78 1999/05/10 00:44:54 momjian Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.79 1999/05/10 04:02:03 momjian Exp $
11
11
*
12
12
*
13
13
* INTERFACE ROUTINES
@@ -761,10 +761,10 @@ AddNewRelationType(char *typeName, Oid new_rel_oid)
761
761
typeLen (typeidType (OIDOID )), /* external size */
762
762
'c' , /* type-type (catalog) */
763
763
',' , /* default array delimiter */
764
- "oidin " , /* input procedure */
765
- "oidout " , /* output procedure */
766
- "oidin " , /* receive procedure */
767
- "oidout " , /* send procedure */
764
+ "int4in " , /* input procedure */
765
+ "int4out " , /* output procedure */
766
+ "int4in " , /* receive procedure */
767
+ "int4out " , /* send procedure */
768
768
NULL , /* array element type - irrelevent */
769
769
"-" , /* default type value */
770
770
(bool ) 1 , /* passed by value */
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/utils/fmgr/fmgr.c,v 1.26 1999/05/10 00:46:14 momjian Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/utils/fmgr/fmgr.c,v 1.27 1999/05/10 04:02:05 momjian Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
@@ -277,7 +277,7 @@ fmgr_info(Oid procedureId, FmgrInfo *finfo)
277
277
0 , 0 , 0 );
278
278
if (!HeapTupleIsValid (languageTuple ))
279
279
{
280
- elog (ERROR , "fmgr_info: %u" ,
280
+ elog (ERROR , "fmgr_info: %s % u" ,
281
281
"Cache lookup for language failed" ,
282
282
DatumGetObjectId (procedureStruct -> prolang ));
283
283
}
Original file line number Diff line number Diff line change 7
7
*
8
8
* Copyright (c) 1994, Regents of the University of California
9
9
*
10
- * $Id: pg_type.h,v 1.60 1999/05/10 00:46:20 momjian Exp $
10
+ * $Id: pg_type.h,v 1.61 1999/05/10 04:02:07 momjian Exp $
11
11
*
12
12
* NOTES
13
13
* the genbki.sh script reads this file and generates .bki
@@ -198,7 +198,7 @@ DATA(insert OID = 25 ( text PGUID -1 -1 f b t \054 0 18 textin textout text
198
198
DESCR ("native variable-length string" );
199
199
#define TEXTOID 25
200
200
201
- DATA (insert OID = 26 ( oid PGUID 4 10 t b t \054 0 0 oidin oidout oidin oidout i _null_ ));
201
+ DATA (insert OID = 26 ( oid PGUID 4 10 t b t \054 0 0 int4in int4out int4in int4out i _null_ ));
202
202
DESCR ("object identifier type" );
203
203
#define OIDOID 26
204
204
You can’t perform that action at this time.
0 commit comments