diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2021-01-06 22:09:00 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2021-01-06 22:09:16 -0500 |
commit | f7a1a805cb178653ea2a6c8991ad73b035af953e (patch) | |
tree | 9639c06f0126d8cb8c76632d6dde4823958e5f9b /src/test/modules/test_regex/sql/test_regex.sql | |
parent | 9486e7b666fd113f043d5f091fd42bc1ef72acd8 (diff) | |
download | postgresql-f7a1a805cb178653ea2a6c8991ad73b035af953e.tar.gz postgresql-f7a1a805cb178653ea2a6c8991ad73b035af953e.zip |
Fix bogus link in test comments.
I apparently copied-and-pasted the wrong link in commit ca8217c10.
Point it where it was meant to go.
Diffstat (limited to 'src/test/modules/test_regex/sql/test_regex.sql')
-rw-r--r-- | src/test/modules/test_regex/sql/test_regex.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/modules/test_regex/sql/test_regex.sql b/src/test/modules/test_regex/sql/test_regex.sql index 272dfc0cd60..4676cd1a060 100644 --- a/src/test/modules/test_regex/sql/test_regex.sql +++ b/src/test/modules/test_regex/sql/test_regex.sql @@ -171,7 +171,7 @@ select * from test_regex('+', '', '-'); select * from test_regex('?', '', '-'); -- These two are not yet incorporated in Tcl, cf --- https://core.tcl-lang.org/tcl/artifact/106269fa65d96b83 +-- https://core.tcl-lang.org/tcl/tktview?name=5ea71fdcd3291c38 -- expectError 6.21 - {x(\w)(?=(\1))} ESUBREG select * from test_regex('x(\w)(?=(\1))', '', '-'); -- expectMatch 6.22 HP {x(?=((foo)))} xfoo x |