diff options
Diffstat (limited to 'src/include/catalog/pg_proc.h')
-rw-r--r-- | src/include/catalog/pg_proc.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/include/catalog/pg_proc.h b/src/include/catalog/pg_proc.h index ca5345771ba..a504206ba49 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.218 2001/10/25 05:49:57 momjian Exp $ + * $Id: pg_proc.h,v 1.219 2001/10/25 14:10:06 tgl Exp $ * * NOTES * The script catalog/genbki.sh reads this file and generates .bki @@ -885,6 +885,11 @@ DESCR("convert int8 to float8"); DATA(insert OID = 483 ( int8 PGUID 12 f t t t 1 f 20 "701" 100 0 0 100 dtoi8 - )); DESCR("convert float8 to int8"); +DATA(insert OID = 714 ( int2 PGUID 12 f t t t 1 f 21 "20" 100 0 0 100 int82 - )); +DESCR("convert int8 to int2"); +DATA(insert OID = 754 ( int8 PGUID 12 f t t t 1 f 20 "21" 100 0 0 100 int28 - )); +DESCR("convert int2 to int8"); + /* OIDS 500 - 599 */ /* OIDS 600 - 699 */ |