|
3565 | 3565 | { oid => '2285', descr => 'replace text using regexp',
|
3566 | 3566 | proname => 'regexp_replace', prorettype => 'text',
|
3567 | 3567 | proargtypes => 'text text text text', prosrc => 'textregexreplace' },
|
| 3568 | +{ oid => '9611', descr => 'replace text using regexp', |
| 3569 | + proname => 'regexp_replace', prorettype => 'text', |
| 3570 | + proargtypes => 'text text text int4 int4 text', |
| 3571 | + prosrc => 'textregexreplace_extended' }, |
| 3572 | +{ oid => '9612', descr => 'replace text using regexp', |
| 3573 | + proname => 'regexp_replace', prorettype => 'text', |
| 3574 | + proargtypes => 'text text text int4 int4', |
| 3575 | + prosrc => 'textregexreplace_extended_no_flags' }, |
| 3576 | +{ oid => '9613', descr => 'replace text using regexp', |
| 3577 | + proname => 'regexp_replace', prorettype => 'text', |
| 3578 | + proargtypes => 'text text text int4', |
| 3579 | + prosrc => 'textregexreplace_extended_no_n' }, |
3568 | 3580 | { oid => '3396', descr => 'find first match for regexp',
|
3569 | 3581 | proname => 'regexp_match', prorettype => '_text', proargtypes => 'text text',
|
3570 | 3582 | prosrc => 'regexp_match_no_flags' },
|
|
3579 | 3591 | proname => 'regexp_matches', prorows => '10', proretset => 't',
|
3580 | 3592 | prorettype => '_text', proargtypes => 'text text text',
|
3581 | 3593 | prosrc => 'regexp_matches' },
|
| 3594 | +{ oid => '9614', descr => 'count regexp matches', |
| 3595 | + proname => 'regexp_count', prorettype => 'int4', proargtypes => 'text text', |
| 3596 | + prosrc => 'regexp_count_no_start' }, |
| 3597 | +{ oid => '9615', descr => 'count regexp matches', |
| 3598 | + proname => 'regexp_count', prorettype => 'int4', |
| 3599 | + proargtypes => 'text text int4', prosrc => 'regexp_count_no_flags' }, |
| 3600 | +{ oid => '9616', descr => 'count regexp matches', |
| 3601 | + proname => 'regexp_count', prorettype => 'int4', |
| 3602 | + proargtypes => 'text text int4 text', prosrc => 'regexp_count' }, |
| 3603 | +{ oid => '9617', descr => 'position of regexp match', |
| 3604 | + proname => 'regexp_instr', prorettype => 'int4', proargtypes => 'text text', |
| 3605 | + prosrc => 'regexp_instr_no_start' }, |
| 3606 | +{ oid => '9618', descr => 'position of regexp match', |
| 3607 | + proname => 'regexp_instr', prorettype => 'int4', |
| 3608 | + proargtypes => 'text text int4', prosrc => 'regexp_instr_no_n' }, |
| 3609 | +{ oid => '9619', descr => 'position of regexp match', |
| 3610 | + proname => 'regexp_instr', prorettype => 'int4', |
| 3611 | + proargtypes => 'text text int4 int4', prosrc => 'regexp_instr_no_endoption' }, |
| 3612 | +{ oid => '9620', descr => 'position of regexp match', |
| 3613 | + proname => 'regexp_instr', prorettype => 'int4', |
| 3614 | + proargtypes => 'text text int4 int4 int4', |
| 3615 | + prosrc => 'regexp_instr_no_flags' }, |
| 3616 | +{ oid => '9621', descr => 'position of regexp match', |
| 3617 | + proname => 'regexp_instr', prorettype => 'int4', |
| 3618 | + proargtypes => 'text text int4 int4 int4 text', |
| 3619 | + prosrc => 'regexp_instr_no_subexpr' }, |
| 3620 | +{ oid => '9622', descr => 'position of regexp match', |
| 3621 | + proname => 'regexp_instr', prorettype => 'int4', |
| 3622 | + proargtypes => 'text text int4 int4 int4 text int4', |
| 3623 | + prosrc => 'regexp_instr' }, |
| 3624 | +{ oid => '9623', descr => 'test for regexp match', |
| 3625 | + proname => 'regexp_like', prorettype => 'bool', proargtypes => 'text text', |
| 3626 | + prosrc => 'regexp_like_no_flags' }, |
| 3627 | +{ oid => '9624', descr => 'test for regexp match', |
| 3628 | + proname => 'regexp_like', prorettype => 'bool', |
| 3629 | + proargtypes => 'text text text', prosrc => 'regexp_like' }, |
| 3630 | +{ oid => '9625', descr => 'extract substring that matches regexp', |
| 3631 | + proname => 'regexp_substr', prorettype => 'text', proargtypes => 'text text', |
| 3632 | + prosrc => 'regexp_substr_no_start' }, |
| 3633 | +{ oid => '9626', descr => 'extract substring that matches regexp', |
| 3634 | + proname => 'regexp_substr', prorettype => 'text', |
| 3635 | + proargtypes => 'text text int4', prosrc => 'regexp_substr_no_n' }, |
| 3636 | +{ oid => '9627', descr => 'extract substring that matches regexp', |
| 3637 | + proname => 'regexp_substr', prorettype => 'text', |
| 3638 | + proargtypes => 'text text int4 int4', prosrc => 'regexp_substr_no_flags' }, |
| 3639 | +{ oid => '9628', descr => 'extract substring that matches regexp', |
| 3640 | + proname => 'regexp_substr', prorettype => 'text', |
| 3641 | + proargtypes => 'text text int4 int4 text', |
| 3642 | + prosrc => 'regexp_substr_no_subexpr' }, |
| 3643 | +{ oid => '9629', descr => 'extract substring that matches regexp', |
| 3644 | + proname => 'regexp_substr', prorettype => 'text', |
| 3645 | + proargtypes => 'text text int4 int4 text int4', prosrc => 'regexp_substr' }, |
3582 | 3646 | { oid => '2088', descr => 'split string by field_sep and return field_num',
|
3583 | 3647 | proname => 'split_part', prorettype => 'text',
|
3584 | 3648 | proargtypes => 'text text int4', prosrc => 'split_part' },
|
|
0 commit comments