|
2417 | 2417 | { oid => '1216', descr => 'get description for table column',
|
2418 | 2418 | proname => 'col_description', prolang => '14', procost => '100',
|
2419 | 2419 | provolatile => 's', prorettype => 'text', proargtypes => 'oid int4',
|
2420 |
| - prosrc => 'select description from pg_catalog.pg_description where objoid = $1 and classoid = \'\'pg_catalog.pg_class\'\'::pg_catalog.regclass and objsubid = $2' }, |
| 2420 | + prosrc => 'select description from pg_catalog.pg_description where objoid = $1 and classoid = \'pg_catalog.pg_class\'::pg_catalog.regclass and objsubid = $2' }, |
2421 | 2421 | { oid => '1993',
|
2422 | 2422 | descr => 'get description for object id and shared catalog name',
|
2423 | 2423 | proname => 'shobj_description', prolang => '14', procost => '100',
|
|
3483 | 3483 | { oid => '879', descr => 'left-pad string to length',
|
3484 | 3484 | proname => 'lpad', prolang => '14', prorettype => 'text',
|
3485 | 3485 | proargtypes => 'text int4',
|
3486 |
| - prosrc => 'select pg_catalog.lpad($1, $2, \'\' \'\')' }, |
| 3486 | + prosrc => 'select pg_catalog.lpad($1, $2, \' \')' }, |
3487 | 3487 | { oid => '880', descr => 'right-pad string to length',
|
3488 | 3488 | proname => 'rpad', prolang => '14', prorettype => 'text',
|
3489 | 3489 | proargtypes => 'text int4',
|
3490 |
| - prosrc => 'select pg_catalog.rpad($1, $2, \'\' \'\')' }, |
| 3490 | + prosrc => 'select pg_catalog.rpad($1, $2, \' \')' }, |
3491 | 3491 | { oid => '881', descr => 'trim spaces from left end of string',
|
3492 | 3492 | proname => 'ltrim', prorettype => 'text', proargtypes => 'text',
|
3493 | 3493 | prosrc => 'ltrim1' },
|
|
6930 | 6930 | descr => 'disk space usage for the main fork of the specified table or index',
|
6931 | 6931 | proname => 'pg_relation_size', prolang => '14', provolatile => 'v',
|
6932 | 6932 | prorettype => 'int8', proargtypes => 'regclass',
|
6933 |
| - prosrc => 'select pg_catalog.pg_relation_size($1, \'\'main\'\')' }, |
| 6933 | + prosrc => 'select pg_catalog.pg_relation_size($1, \'main\')' }, |
6934 | 6934 | { oid => '2332',
|
6935 | 6935 | descr => 'disk space usage for the specified fork of a table or index',
|
6936 | 6936 | proname => 'pg_relation_size', provolatile => 'v', prorettype => 'int8',
|
|
8168 | 8168 | { oid => '2932', descr => 'evaluate XPath expression',
|
8169 | 8169 | proname => 'xpath', prolang => '14', prorettype => '_xml',
|
8170 | 8170 | proargtypes => 'text xml',
|
8171 |
| - prosrc => 'select pg_catalog.xpath($1, $2, \'\'{}\'\'::pg_catalog.text[])' }, |
| 8171 | + prosrc => 'select pg_catalog.xpath($1, $2, \'{}\'::pg_catalog.text[])' }, |
8172 | 8172 |
|
8173 | 8173 | { oid => '2614', descr => 'test XML value against XPath expression',
|
8174 | 8174 | proname => 'xmlexists', prorettype => 'bool', proargtypes => 'text xml',
|
|
8181 | 8181 | { oid => '3050', descr => 'test XML value against XPath expression',
|
8182 | 8182 | proname => 'xpath_exists', prolang => '14', prorettype => 'bool',
|
8183 | 8183 | proargtypes => 'text xml',
|
8184 |
| - prosrc => 'select pg_catalog.xpath_exists($1, $2, \'\'{}\'\'::pg_catalog.text[])' }, |
| 8184 | + prosrc => 'select pg_catalog.xpath_exists($1, $2, \'{}\'::pg_catalog.text[])' }, |
8185 | 8185 | { oid => '3051', descr => 'determine if a string is well formed XML',
|
8186 | 8186 | proname => 'xml_is_well_formed', provolatile => 's', prorettype => 'bool',
|
8187 | 8187 | proargtypes => 'text', prosrc => 'xml_is_well_formed' },
|
|
0 commit comments