Location via proxy:
[ UP ]
[Report a bug]
[Manage cookies]
No cookies
No scripts
No ads
No referrer
Show this form
projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
68c3c49
)
pg_upgrade/test.sh: Quote sed(1) argument
author
Alvaro Herrera
<alvherre@alvh.no-ip.org>
Wed, 18 Sep 2019 14:24:12 +0000
(11:24 -0300)
committer
Alvaro Herrera
<alvherre@alvh.no-ip.org>
Wed, 18 Sep 2019 14:26:46 +0000
(11:26 -0300)
Lack of quotes results in failure to run the test under older Solaris.
Author: Marina Polyakova, Victor Wagner
Discussion: https://postgr.es/m/
feba89f89e8925b3535cb7d72b9e05e1
@postgrespro.ru
src/bin/pg_upgrade/test.sh
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/pg_upgrade/test.sh
b/src/bin/pg_upgrade/test.sh
index 9119bf6655354b0abcaeaeba59e8c468b501c2c8..ace9aa9bbd7ce1decfdc8d4d7d5386bdd5fbdd76 100644
(file)
--- a/
src/bin/pg_upgrade/test.sh
+++ b/
src/bin/pg_upgrade/test.sh
@@
-33,7
+33,7
@@
standard_initdb() {
# What flavor of host are we on?
# Treat MINGW* (msys1) and MSYS* (msys2) the same.
-testhost=`uname -s | sed
s/^MSYS/MINGW/
`
+testhost=`uname -s | sed
's/^MSYS/MINGW/'
`
# Establish how the server will listen for connections
case $testhost in