diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-11-26 04:37:53 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-11-26 04:37:53 +0000 |
commit | 7c00ffb843167b0674003c9618b23768624b4fef (patch) | |
tree | 60a4a0b3a575be23697e6523602738c313dda8b0 /src | |
parent | 983ec2cb4bf942a61c6130bce502007569d1403f (diff) | |
download | postgresql-7c00ffb843167b0674003c9618b23768624b4fef.tar.gz postgresql-7c00ffb843167b0674003c9618b23768624b4fef.zip |
Fix from Zeugswetter Andreas DBT for Sendproc.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/catalog/heap.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/catalog/heap.c b/src/backend/catalog/heap.c index c7806862ba8..582f41eab50 100644 --- a/src/backend/catalog/heap.c +++ b/src/backend/catalog/heap.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.35 1997/11/26 01:10:46 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.36 1997/11/26 04:37:53 momjian Exp $ * * INTERFACE ROUTINES * heap_creatr() - Create an uncataloged heap relation @@ -728,9 +728,9 @@ addNewRelationType(char *typeName, Oid new_rel_oid) 'c', /* type-type (catalog) */ ',', /* default array delimiter */ "int4in", /* input procedure */ - "int4out", /* output procedure */ - "int4in", /* send procedure */ - "int4out", /* receive procedure */ + "int4out",/* output procedure */ + "int4out",/* send procedure */ + "int4in", /* receive procedure */ NULL, /* array element type - irrelevent */ "-", /* default type value */ (bool) 1, /* passed by value */ |