projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
860ea46
)
Simplify a needlessly-complicated regular expression.
author
Robert Haas
<rhaas@postgresql.org>
Wed, 30 Mar 2022 13:02:44 +0000
(09:02 -0400)
committer
Robert Haas
<rhaas@postgresql.org>
Wed, 30 Mar 2022 13:03:28 +0000
(09:03 -0400)
Dilip Kumar
Discussion: https://postgr.es/m/CAFiTN-uV_u1LgBN_CAiGyfgPXp+bfBUVqG5mZ24Nqc8e_Yb0HQ@mail.gmail.com
src/bin/scripts/t/020_createdb.pl
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/scripts/t/020_createdb.pl
b/src/bin/scripts/t/020_createdb.pl
index b81f06a251e456eb39f582be59aa963dc4a08ee9..18f6e313d57223a5dcd36f2cbea07a12e152b7de 100644
(file)
--- a/
src/bin/scripts/t/020_createdb.pl
+++ b/
src/bin/scripts/t/020_createdb.pl
@@
-109,7
+109,7
@@
$node->command_checks_all(
1,
[qr/^$/],
[
- qr/^createdb: error: database creation failed: ERROR: invalid create database strategy
|^createdb: error: database creation failed: ERROR: invalid create database strategy
foo/s
+ qr/^createdb: error: database creation failed: ERROR: invalid create database strategy foo/s
],
'createdb with incorrect --strategy');