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
2fc04874
Commit
2fc04874
authored
May 14, 1997
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow pg_dumpall to preserve database ownership.
parent
029873a1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
src/bin/pg_dump/pg_dumpall
src/bin/pg_dump/pg_dumpall
+4
-3
No files found.
src/bin/pg_dump/pg_dumpall
View file @
2fc04874
...
...
@@ -5,18 +5,19 @@
# It also dumps the pg_user table
#
# to adapt to System V vs. BSD 'echo'
set
-x
#
set -x
if
echo
'\\'
|
grep
'\\\\'
>
/dev/null 2>&1
then
BS
=
'\'
# BSD
else
BS
=
'\\'
# System V
fi
psql
-l
-A
-q
-t
|cut
-d
"|"
-f1
|
grep
-v
'^template1$
'
|
\
while
read
DATABASE
psql
-l
-A
-q
-t
|cut
-d
"|"
-f1
-2
|
tr
'|'
' '
|
grep
-v
'^template1
'
|
\
while
read
DATABASE
USER
do
echo
"
${
BS
}
connect template1"
echo
"create database
$DATABASE
;"
echo
"update pg_database set datdba =
$USER
where datname = '
$DATABASE
';"
echo
"
${
BS
}
connect
$DATABASE
"
pg_dump
"
$@
"
$DATABASE
done
...
...
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