|
6 | 6 | *
|
7 | 7 | * Copyright (c) 1994, Regents of the University of California
|
8 | 8 | *
|
9 |
| - * $Id: pg_proc.h,v 1.87 1998/12/3019:56:32 wieck Exp $ |
| 9 | + * $Id: pg_proc.h,v 1.88 1999/02/13 04:19:54 thomas Exp $ |
10 | 10 | *
|
11 | 11 | * NOTES
|
12 | 12 | * The script catalog/genbki.sh reads this file and generates .bki
|
@@ -842,7 +842,7 @@ DESCR("smaller of two");
|
842 | 842 |
|
843 | 843 | DATA(insertOID=460 (int8inPGUID11ftf1f20"0"10000100foobar ));
|
844 | 844 | DESCR("(internal)");
|
845 |
| -DATA(insertOID=461 (int8outPGUID11ftf1f19"0"10000100foobar )); |
| 845 | +DATA(insertOID=461 (int8outPGUID11ftf1f23"0"10000100foobar )); |
846 | 846 | DESCR("(internal)");
|
847 | 847 | DATA(insertOID=462 (int8umPGUID11ftf1f20"20"10000100foobar ));
|
848 | 848 | DESCR("unary minus");
|
@@ -1546,6 +1546,11 @@ DESCR("multiply");
|
1546 | 1546 | DATA(insertOID=1281 (int48divPGUID11ftf2f20"23 20"10000100foobar ));
|
1547 | 1547 | DESCR("divide");
|
1548 | 1548 |
|
| 1549 | +DATA(insertOID=1288 (int8_textPGUID11ftf1f25"20"10000100foobar )); |
| 1550 | +DESCR("convert int8 to text"); |
| 1551 | +DATA(insertOID=1289 (text_int8PGUID11ftf1f20"25"10000100foobar )); |
| 1552 | +DESCR("convert text to int8"); |
| 1553 | + |
1549 | 1554 | DATA(insertOID=1297 (timestamp_inPGUID11ftf1f1296"0"10000100foobar ));
|
1550 | 1555 | DESCR("(internal)");
|
1551 | 1556 | DATA(insertOID=1298 (timestamp_outPGUID11ftf1f23"0"10000100foobar ));
|
@@ -2027,6 +2032,19 @@ DESCR("convert float8 to text");
|
2027 | 2032 | DATA(insertOID=1607 (textPGUID14ftf1f25"700"10000100"select float4_text($1)"- ));
|
2028 | 2033 | DESCR("convert float4 to text");
|
2029 | 2034 |
|
| 2035 | +DATA(insertOID=1619 (varcharPGUID14ftf1f1043"23"10000100"select int4_text($1)"- )); |
| 2036 | +DESCR("convert int4 to varchar"); |
| 2037 | +DATA(insertOID=1620 (int4PGUID14ftf1f23"1043"10000100"select text_int4($1)"- )); |
| 2038 | +DESCR("convert varchar to int4"); |
| 2039 | +DATA(insertOID=1621 (textPGUID14ftf1f25"20"10000100"select int8_text($1)"- )); |
| 2040 | +DESCR("convert int8 to text"); |
| 2041 | +DATA(insertOID=1622 (int8PGUID14ftf1f20"25"10000100"select text_int8($1)"- )); |
| 2042 | +DESCR("convert text to int8"); |
| 2043 | +DATA(insertOID=1623 (varcharPGUID14ftf1f1043"20"10000100"select int8_text($1)"- )); |
| 2044 | +DESCR("convert int8 to varchar"); |
| 2045 | +DATA(insertOID=1624 (int8PGUID14ftf1f20"1043"10000100"select text_int8($1)"- )); |
| 2046 | +DESCR("convert varchar to int8"); |
| 2047 | + |
2030 | 2048 | /* Oracle Compatibility Related Functions - By Edmund Mergl <E.Mergl@bawue.de> */
|
2031 | 2049 | DATA(insertOID=868 (strposPGUID14ftf2f23"25 25"10000100"select textpos($1, $2)"- ));
|
2032 | 2050 | DESCR("find position of substring");
|
|