Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
69cc16f4
Commit
69cc16f4
authored
May 25, 2000
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Quote database name so that not-all-lowercase names are handled safely.
parent
61f5e13c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
src/bin/pg_dump/pg_dumpall
src/bin/pg_dump/pg_dumpall
+7
-7
No files found.
src/bin/pg_dump/pg_dumpall
View file @
69cc16f4
...
...
@@ -5,7 +5,7 @@
# It also dumps the pg_shadow and pg_group tables, which belong to the
# whole installation rather than any one individual database.
#
# $Header: /cvsroot/pgsql/src/bin/pg_dump/Attic/pg_dumpall,v 1.2
6 2000/05/05 17:50:38
tgl Exp $
# $Header: /cvsroot/pgsql/src/bin/pg_dump/Attic/pg_dumpall,v 1.2
7 2000/05/25 20:18:15
tgl Exp $
#
# to adapt to System V vs. BSD 'echo'
if
echo
'\\'
|
grep
'\\\\'
>
/dev/null 2>&1
...
...
@@ -65,9 +65,9 @@ echo "${BS}."
#
# For each database, run pg_dump to dump the contents of that database.
#
psql
-A
-q
-t
-c
"select
*
from pg_database"
template1 |
grep
'|'
|
tr
'|'
' '
|
\
psql
-A
-q
-t
-c
"select
datname,datdba,encoding
from pg_database"
template1 |
grep
'|'
|
tr
'|'
' '
|
\
grep
-v
'^template1 '
|
\
while
read
DATABASE DBUSERID ENCODING
DATAPATH
while
read
DATABASE DBUSERID ENCODING
do
DBUSERNAME
=
"
`
echo
\"
\
select
usename
\
...
...
@@ -79,13 +79,13 @@ do
if
sh
-c
"pg_encoding
$ENCODING
"
>
/dev/null 2>&1
then
echo
"create database
$DATABASE
with encoding='
`
pg_encoding
$ENCODING
`
';"
echo
"create database
\"
$DATABASE
\"
with encoding='
`
pg_encoding
$ENCODING
`
';"
else
echo
"create database
$DATABASE
;"
echo
"create database
\"
$DATABASE
\"
;"
fi
echo
"
${
BS
}
connect
$DATABASE
$
POSTGRES_USER
"
pg_dump
${
1
+
"
$@
"
}
$DATABASE
echo
"
${
BS
}
connect
$DATABASE
$
DBUSERNAME
"
pg_dump
${
1
+
"
$@
"
}
"
$DATABASE
"
if
[
"
$?
"
-ne
0
]
then
echo
"pg_dump failed on
$DATABASE
, exiting"
1>&2
exit
1
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment