BUG #15595: matchctx->npatterns is always 1 no matter pattern have 0or 1 subexpression - Mailing list pgsql-bugs

From PG Bug reporting form
Subject BUG #15595: matchctx->npatterns is always 1 no matter pattern have 0or 1 subexpression
Date
Msg-id 15595-e6317afee476db49@postgresql.org
Whole thread Raw
Responses Re: BUG #15595: matchctx->npatterns is always 1 no matter pattern have 0 or 1 subexpression  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: BUG #15595: matchctx->npatterns is always 1 no matter pattern have 0 or 1 subexpression  (Andrew Gierth <andrew@tao11.riddles.org.uk>)
List pgsql-bugs
The following bug has been logged on the website:

Bug reference:      15595
Logged by:          Damion
Email address:      zhq651@126.com
PostgreSQL version: 11.1
Operating system:   linux
Description:

Hi,
when I use setup_regexp_matches, I found matchctx->npatterns is always 1 no
matter pattern  have not or one subexpr subexpression.
so I can't tell whether there is a subexpression. see below:

 if orig_str is '221133' & pattern  is  '11'
(gdb) p nth_subexpr
$23 = 1
(gdb) p matchctx->npatterns
$24 = 1

 if orig_str is '221133' & pattern  is  '(11)'
(gdb) p nth_subexpr
$25 = 1
(gdb) p matchctx->npatterns
$26 = 1

if pattern  is  '((1)1)' or '((11))' (2 subexpression  or more), I can kwown
how many subexpression by matchctx->npatterns .
postgres=# SELECT regexp_substr('221133', '((1)1)', 1, 1, 'i', 1);
(gdb) p matchctx->npatterns
$27 = 2
(gdb) p nth_subexpr
$28 = 1

Thanks.


pgsql-bugs by date:

Previous
From: Alexander Lakhin
Date:
Subject: Re: BUG #15594: Unstable tests in contrib/test_decoding/output_iso/
Next
From: PG Bug reporting form
Date:
Subject: BUG #15596: Folders created with wrong permissions when installing anextension with a non-default umask