diff options
author | Michael Paquier <michael@paquier.xyz> | 2019-05-17 09:40:02 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2019-05-17 09:40:02 +0900 |
commit | 6ba500cae6f57acf8f392d9e1671640f7c9d43b3 (patch) | |
tree | f4e7785e194e5cf8dd10346bcc6fd5d3153accc1 /contrib | |
parent | 41998f90ce66425ca6071ac5e170a19bb1498414 (diff) | |
download | postgresql-6ba500cae6f57acf8f392d9e1671640f7c9d43b3.tar.gz postgresql-6ba500cae6f57acf8f392d9e1671640f7c9d43b3.zip |
Fix regression test outputs
75445c1 has caused various failures in tests across the tree after
updating some error messages, so fix the newly-expected output.
Author: Michael Paquier
Reviewed-by: Tom Lane
Discussion: https://postgr.es/m/8332.1558048838@sss.pgh.pa.us
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/citext/expected/citext.out | 2 | ||||
-rw-r--r-- | contrib/citext/expected/citext_1.out | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/citext/expected/citext.out b/contrib/citext/expected/citext.out index 20890db8591..94aba67cdb2 100644 --- a/contrib/citext/expected/citext.out +++ b/contrib/citext/expected/citext.out @@ -1841,7 +1841,7 @@ SELECT regexp_match('foobarbequebaz'::citext, '(BAR)(BEQUE)'::citext, 'c'::citex -- g is not allowed SELECT regexp_match('foobarbequebazmorebarbequetoo'::citext, '(BAR)(BEQUE)'::citext, 'g') AS "error"; -ERROR: regexp_match does not support the global option +ERROR: regexp_match() does not support the "global" option HINT: Use the regexp_matches function instead. CONTEXT: SQL function "regexp_match" statement 1 SELECT regexp_matches('foobarbequebaz'::citext, '(bar)(beque)') = ARRAY[ 'bar', 'beque' ] AS t; diff --git a/contrib/citext/expected/citext_1.out b/contrib/citext/expected/citext_1.out index 755baad8e21..187d3b5d2c6 100644 --- a/contrib/citext/expected/citext_1.out +++ b/contrib/citext/expected/citext_1.out @@ -1841,7 +1841,7 @@ SELECT regexp_match('foobarbequebaz'::citext, '(BAR)(BEQUE)'::citext, 'c'::citex -- g is not allowed SELECT regexp_match('foobarbequebazmorebarbequetoo'::citext, '(BAR)(BEQUE)'::citext, 'g') AS "error"; -ERROR: regexp_match does not support the global option +ERROR: regexp_match() does not support the "global" option HINT: Use the regexp_matches function instead. CONTEXT: SQL function "regexp_match" statement 1 SELECT regexp_matches('foobarbequebaz'::citext, '(bar)(beque)') = ARRAY[ 'bar', 'beque' ] AS t; |