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
ba74ce73
Commit
ba74ce73
authored
Oct 25, 1998
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix from Tom Lane for pg_shadow in pg_upgrade
parent
cf505526
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
doc/src/sgml/ref/pg_upgrade.sgml
doc/src/sgml/ref/pg_upgrade.sgml
+1
-1
src/bin/pg_dump/pg_upgrade
src/bin/pg_dump/pg_upgrade
+1
-1
src/man/pg_upgrade.1
src/man/pg_upgrade.1
+2
-2
No files found.
doc/src/sgml/ref/pg_upgrade.sgml
View file @
ba74ce73
...
...
@@ -34,7 +34,7 @@ Description
PostgreSQL release without reloading all the data. First,
to be safe, back up your data directory. Then, use:
<programlisting>
% pg_dumpall -s >db.out
% pg_dumpall -s
-z
>db.out
</programlisting>
to dump out your old database definitions without any
data. Stop the postmaster and all backends.
...
...
src/bin/pg_dump/pg_upgrade
View file @
ba74ce73
...
...
@@ -61,7 +61,7 @@ fi
# then shouldn't be in there anyway
cat
$INPUT
|
awk
' {
if (toupper($
0) ~ /^COPY /
)
if (toupper($
1) != "COPY" && $2 != "pg_shadow"
)
while (getline $0 > 0 && $0 != "\\.")
;
else print $0;
...
...
src/man/pg_upgrade.1
View file @
ba74ce73
.\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/pg_upgrade.1,v 1.
4 1998/08/31 04:32:1
8 momjian Exp $
.\" $Header: /cvsroot/pgsql/src/man/Attic/pg_upgrade.1,v 1.
5 1998/10/25 02:47:3
8 momjian Exp $
.TH pg_upgrade UNIX 1/20/96 PostgreSQL PostgreSQL
.SH NAME
pg_upgrade - allows upgrade from a previous release without reloading data
...
...
@@ -15,7 +15,7 @@ First, to be safe, back up your data directory.
Then, use:
.nf
pg_dumpall -s >db.out
pg_dumpall -s
-z
>db.out
.fi
to dump out your old database definitions without any data.
...
...
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