aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2021-01-06 22:09:00 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2021-01-06 22:09:16 -0500
commitf7a1a805cb178653ea2a6c8991ad73b035af953e (patch)
tree9639c06f0126d8cb8c76632d6dde4823958e5f9b /src
parent9486e7b666fd113f043d5f091fd42bc1ef72acd8 (diff)
downloadpostgresql-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')
-rw-r--r--src/test/modules/test_regex/expected/test_regex.out2
-rw-r--r--src/test/modules/test_regex/sql/test_regex.sql2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/modules/test_regex/expected/test_regex.out b/src/test/modules/test_regex/expected/test_regex.out
index b62cbac697d..ed1b0cbdb9b 100644
--- a/src/test/modules/test_regex/expected/test_regex.out
+++ b/src/test/modules/test_regex/expected/test_regex.out
@@ -506,7 +506,7 @@ ERROR: invalid regular expression: quantifier operand invalid
select * from test_regex('?', '', '-');
ERROR: invalid regular expression: quantifier operand invalid
-- 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))', '', '-');
ERROR: invalid regular expression: invalid backreference number
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