1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-13 16:22:44 +03:00

Re-order args for TypeCreate() to be clearer.

This commit is contained in:
Bruce Momjian
1997-11-26 04:50:47 +00:00
parent 7c00ffb843
commit d79b9a1b7a
4 changed files with 9 additions and 9 deletions

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.36 1997/11/26 04:37:53 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.37 1997/11/26 04:50:19 momjian Exp $
*
* INTERFACE ROUTINES
* heap_creatr() - Create an uncataloged heap relation
@@ -729,8 +729,8 @@ addNewRelationType(char *typeName, Oid new_rel_oid)
',', /* default array delimiter */
"int4in", /* input procedure */
"int4out",/* output procedure */
"int4out",/* send procedure */
"int4in", /* receive procedure */
"int4out",/* send procedure */
NULL, /* array element type - irrelevent */
"-", /* default type value */
(bool) 1, /* passed by value */

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/pg_type.c,v 1.14 1997/11/25 21:58:50 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/catalog/pg_type.c,v 1.15 1997/11/26 04:50:21 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -290,8 +290,8 @@ TypeCreate(char *typeName,
char typDelim,
char *inputProcedure,
char *outputProcedure,
char *sendProcedure,
char *receiveProcedure,
char *sendProcedure,
char *elementTypeName,
char *defaultTypeValue, /* internal rep */
bool passedByValue,