|
1314 | 1314 | proname => 'text_smaller', proleakproof => 't', prorettype => 'text', |
1315 | 1315 | proargtypes => 'text text', prosrc => 'text_smaller' }, |
1316 | 1316 |
|
| 1317 | +{ oid => '8920', descr => 'larger of two', |
| 1318 | + proname => 'bytea_larger', proleakproof => 't', prorettype => 'bytea', |
| 1319 | + proargtypes => 'bytea bytea', prosrc => 'bytea_larger' }, |
| 1320 | +{ oid => '8921', descr => 'smaller of two', |
| 1321 | + proname => 'bytea_smaller', proleakproof => 't', prorettype => 'bytea', |
| 1322 | + proargtypes => 'bytea bytea', prosrc => 'bytea_smaller' }, |
| 1323 | + |
1317 | 1324 | { oid => '460', descr => 'I/O', |
1318 | 1325 | proname => 'int8in', prorettype => 'int8', proargtypes => 'cstring', |
1319 | 1326 | prosrc => 'int8in' }, |
|
6879 | 6886 | { oid => '5099', descr => 'maximum value of all xid8 input values', |
6880 | 6887 | proname => 'max', prokind => 'a', proisstrict => 'f', prorettype => 'xid8', |
6881 | 6888 | proargtypes => 'xid8', prosrc => 'aggregate_dummy' }, |
| 6889 | +{ oid => '8922', descr => 'maximum value of all bytea input values', |
| 6890 | + proname => 'max', prokind => 'a', proisstrict => 'f', prorettype => 'bytea', |
| 6891 | + proargtypes => 'bytea', prosrc => 'aggregate_dummy' }, |
6882 | 6892 |
|
6883 | 6893 | { oid => '2131', descr => 'minimum value of all bigint input values', |
6884 | 6894 | proname => 'min', prokind => 'a', proisstrict => 'f', prorettype => 'int8', |
|
6952 | 6962 | { oid => '5100', descr => 'minimum value of all xid8 input values', |
6953 | 6963 | proname => 'min', prokind => 'a', proisstrict => 'f', prorettype => 'xid8', |
6954 | 6964 | proargtypes => 'xid8', prosrc => 'aggregate_dummy' }, |
| 6965 | +{ oid => '8923', descr => 'minimum value of all bytea input values', |
| 6966 | + proname => 'min', prokind => 'a', proisstrict => 'f', prorettype => 'bytea', |
| 6967 | + proargtypes => 'bytea', prosrc => 'aggregate_dummy' }, |
6955 | 6968 |
|
6956 | 6969 | # count has two forms: count(any) and count(*) |
6957 | 6970 | { oid => '2147', |
|
0 commit comments