mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-02-23 19:39:53 +08:00
array_in is defined in the system catalog as taking two arguments while it
actually takes three. Please apply the following patch. Massimo
This commit is contained in:
parent
174b552e71
commit
a01dfe71b8
@ -6,7 +6,7 @@
|
|||||||
*
|
*
|
||||||
* Copyright (c) 1994, Regents of the University of California
|
* Copyright (c) 1994, Regents of the University of California
|
||||||
*
|
*
|
||||||
* $Id: pg_proc.h,v 1.94 1999/03/29 01:30:37 tgl Exp $
|
* $Id: pg_proc.h,v 1.95 1999/04/13 17:28:35 momjian Exp $
|
||||||
*
|
*
|
||||||
* NOTES
|
* NOTES
|
||||||
* The script catalog/genbki.sh reads this file and generates .bki
|
* The script catalog/genbki.sh reads this file and generates .bki
|
||||||
@ -996,7 +996,7 @@ DATA(insert OID = 748 ( array_set PGUID 11 f t f 8 f 23 "0 23 0 0 23 23 23
|
|||||||
DESCR("array");
|
DESCR("array");
|
||||||
DATA(insert OID = 749 ( array_ref PGUID 11 f t f 7 f 23 "0 23 0 23 23 23 0" 100 0 0 100 array_ref -));
|
DATA(insert OID = 749 ( array_ref PGUID 11 f t f 7 f 23 "0 23 0 23 23 23 0" 100 0 0 100 array_ref -));
|
||||||
DESCR("array");
|
DESCR("array");
|
||||||
DATA(insert OID = 750 ( array_in PGUID 11 f t f 2 f 23 "0 0" 100 0 0 100 array_in - ));
|
DATA(insert OID = 750 ( array_in PGUID 11 f t f 3 f 23 "0 0 23" 100 0 0 100 array_in - ));
|
||||||
DESCR("array");
|
DESCR("array");
|
||||||
DATA(insert OID = 751 ( array_out PGUID 11 f t f 2 f 23 "0 0" 100 0 0 100 array_out - ));
|
DATA(insert OID = 751 ( array_out PGUID 11 f t f 2 f 23 "0 0" 100 0 0 100 array_out - ));
|
||||||
DESCR("array");
|
DESCR("array");
|
||||||
|
Loading…
Reference in New Issue
Block a user