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
c1b61798
Commit
c1b61798
authored
Jun 23, 2010
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add username designations to all pg_upgrade utility calls that support it.
parent
601d1eed
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
17 deletions
+25
-17
contrib/pg_upgrade/check.c
contrib/pg_upgrade/check.c
+5
-4
contrib/pg_upgrade/pg_upgrade.c
contrib/pg_upgrade/pg_upgrade.c
+16
-11
contrib/pg_upgrade/server.c
contrib/pg_upgrade/server.c
+4
-2
No files found.
contrib/pg_upgrade/check.c
View file @
c1b61798
...
...
@@ -149,10 +149,11 @@ issue_warnings(migratorContext *ctx, char *sequence_script_file_name)
{
prep_status
(
ctx
,
"Adjusting sequences"
);
exec_prog
(
ctx
,
true
,
SYSTEMQUOTE
"
\"
%s/psql
\"
--set ON_ERROR_STOP=on --port %d "
"-f
\"
%s
\"
--dbname template1 >>
\"
%s
\"
"
SYSTEMQUOTE
,
ctx
->
new
.
bindir
,
ctx
->
new
.
port
,
sequence_script_file_name
,
ctx
->
logfile
);
SYSTEMQUOTE
"
\"
%s/psql
\"
--set ON_ERROR_STOP=on --port %d "
"--username
\"
%s
\"
-f
\"
%s
\"
--dbname template1 >>
\"
%s
\"
"
SYSTEMQUOTE
,
ctx
->
new
.
bindir
,
ctx
->
new
.
port
,
ctx
->
user
,
sequence_script_file_name
,
ctx
->
logfile
);
unlink
(
sequence_script_file_name
);
check_ok
(
ctx
);
}
...
...
contrib/pg_upgrade/pg_upgrade.c
View file @
c1b61798
...
...
@@ -78,7 +78,8 @@ main(int argc, char **argv)
* because there is no need to have the schema load use new oids.
*/
prep_status
(
&
ctx
,
"Setting next oid for new cluster"
);
exec_prog
(
&
ctx
,
true
,
SYSTEMQUOTE
"
\"
%s/pg_resetxlog
\"
-o %u
\"
%s
\"
> "
DEVNULL
SYSTEMQUOTE
,
exec_prog
(
&
ctx
,
true
,
SYSTEMQUOTE
"
\"
%s/pg_resetxlog
\"
-o %u
\"
%s
\"
> "
DEVNULL
SYSTEMQUOTE
,
ctx
.
new
.
bindir
,
ctx
.
old
.
controldata
.
chkpnt_nxtoid
,
ctx
.
new
.
pgdata
);
check_ok
(
&
ctx
);
...
...
@@ -156,8 +157,9 @@ prepare_new_cluster(migratorContext *ctx)
*/
prep_status
(
ctx
,
"Analyzing all rows in the new cluster"
);
exec_prog
(
ctx
,
true
,
SYSTEMQUOTE
"
\"
%s/vacuumdb
\"
--port %d --all --analyze >> %s 2>&1"
SYSTEMQUOTE
,
ctx
->
new
.
bindir
,
ctx
->
new
.
port
,
ctx
->
logfile
);
SYSTEMQUOTE
"
\"
%s/vacuumdb
\"
--port %d --username
\"
%s
\"
"
"--all --analyze >> %s 2>&1"
SYSTEMQUOTE
,
ctx
->
new
.
bindir
,
ctx
->
new
.
port
,
ctx
->
user
,
ctx
->
logfile
);
check_ok
(
ctx
);
/*
...
...
@@ -168,8 +170,9 @@ prepare_new_cluster(migratorContext *ctx)
*/
prep_status
(
ctx
,
"Freezing all rows on the new cluster"
);
exec_prog
(
ctx
,
true
,
SYSTEMQUOTE
"
\"
%s/vacuumdb
\"
--port %d --all --freeze >> %s 2>&1"
SYSTEMQUOTE
,
ctx
->
new
.
bindir
,
ctx
->
new
.
port
,
ctx
->
logfile
);
SYSTEMQUOTE
"
\"
%s/vacuumdb
\"
--port %d --username
\"
%s
\"
"
"--all --freeze >> %s 2>&1"
SYSTEMQUOTE
,
ctx
->
new
.
bindir
,
ctx
->
new
.
port
,
ctx
->
user
,
ctx
->
logfile
);
check_ok
(
ctx
);
get_pg_database_relfilenode
(
ctx
,
CLUSTER_NEW
);
...
...
@@ -196,9 +199,10 @@ prepare_new_databases(migratorContext *ctx)
*/
prep_status
(
ctx
,
"Creating databases in the new cluster"
);
exec_prog
(
ctx
,
true
,
SYSTEMQUOTE
"
\"
%s/psql
\"
--set ON_ERROR_STOP=on --port %d "
"-f
\"
%s/%s
\"
--dbname template1 >>
\"
%s
\"
"
SYSTEMQUOTE
,
ctx
->
new
.
bindir
,
ctx
->
new
.
port
,
ctx
->
cwd
,
SYSTEMQUOTE
"
\"
%s/psql
\"
--port %d --username
\"
%s
\"
"
"--set ON_ERROR_STOP=on -f
\"
%s/%s
\"
--dbname template1 >>
\"
%s
\"
"
SYSTEMQUOTE
,
ctx
->
new
.
bindir
,
ctx
->
new
.
port
,
ctx
->
user
,
ctx
->
cwd
,
GLOBALS_DUMP_FILE
,
ctx
->
logfile
);
check_ok
(
ctx
);
...
...
@@ -218,9 +222,10 @@ create_new_objects(migratorContext *ctx)
prep_status
(
ctx
,
"Restoring database schema to new cluster"
);
exec_prog
(
ctx
,
true
,
SYSTEMQUOTE
"
\"
%s/psql
\"
--set ON_ERROR_STOP=on --port %d "
"-f
\"
%s/%s
\"
--dbname template1 >>
\"
%s
\"
"
SYSTEMQUOTE
,
ctx
->
new
.
bindir
,
ctx
->
new
.
port
,
ctx
->
cwd
,
SYSTEMQUOTE
"
\"
%s/psql
\"
--port %d --username
\"
%s
\"
"
"--set ON_ERROR_STOP=on -f
\"
%s/%s
\"
--dbname template1 >>
\"
%s
\"
"
SYSTEMQUOTE
,
ctx
->
new
.
bindir
,
ctx
->
new
.
port
,
ctx
->
user
,
ctx
->
cwd
,
DB_DUMP_FILE
,
ctx
->
logfile
);
check_ok
(
ctx
);
...
...
contrib/pg_upgrade/server.c
View file @
c1b61798
...
...
@@ -185,7 +185,8 @@ start_postmaster(migratorContext *ctx, Cluster whichCluster, bool quiet)
*/
snprintf
(
cmd
,
sizeof
(
cmd
),
SYSTEMQUOTE
"
\"
%s/pg_ctl
\"
-l
\"
%s
\"
-D
\"
%s
\"
"
"-o
\"
-p %d -c autovacuum=off -c autovacuum_freeze_max_age=2000000000
\"
"
"-o
\"
-p %d -c autovacuum=off "
"-c autovacuum_freeze_max_age=2000000000
\"
"
"start >>
\"
%s
\"
2>&1"
SYSTEMQUOTE
,
bindir
,
ctx
->
logfile
,
datadir
,
port
,
#ifndef WIN32
...
...
@@ -229,7 +230,8 @@ stop_postmaster(migratorContext *ctx, bool fast, bool quiet)
/* See comment in start_postmaster() about why win32 output is ignored. */
snprintf
(
cmd
,
sizeof
(
cmd
),
SYSTEMQUOTE
"
\"
%s/pg_ctl
\"
-l
\"
%s
\"
-D
\"
%s
\"
%s stop >>
\"
%s
\"
2>&1"
SYSTEMQUOTE
,
SYSTEMQUOTE
"
\"
%s/pg_ctl
\"
-l
\"
%s
\"
-D
\"
%s
\"
%s stop >> "
"
\"
%s
\"
2>&1"
SYSTEMQUOTE
,
bindir
,
ctx
->
logfile
,
datadir
,
fast
?
"-m fast"
:
""
,
#ifndef WIN32
ctx
->
logfile
);
...
...
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