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.
This commit is contained in:
Tom Lane 2021-01-06 22:09:00 -05:00
parent 9486e7b666
commit f7a1a805cb
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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