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
87717924
Commit
87717924
authored
Oct 18, 2004
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tweak pg_dump to handle default tablespaces correctly --- same logic
as the corrected pg_get_indexdef code.
parent
edb1ba11
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
13 deletions
+26
-13
src/bin/pg_dump/pg_dump.c
src/bin/pg_dump/pg_dump.c
+26
-13
No files found.
src/bin/pg_dump/pg_dump.c
View file @
87717924
...
...
@@ -12,7 +12,7 @@
* by PostgreSQL
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.38
8 2004/10/06 23:31:45 neilc
Exp $
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.38
9 2004/10/18 00:20:41 tgl
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -108,6 +108,9 @@ static const CatalogId nilCatalogId = {0, 0};
static
NamespaceInfo
*
g_namespaces
;
static
int
g_numNamespaces
;
/* need the name of the database's default tablespace */
static
char
*
dbDefaultTableSpace
;
/* flag to turn on/off dollar quoting */
static
int
disable_dollar_quoting
=
0
;
...
...
@@ -1249,6 +1252,9 @@ dumpDatabase(Archive *AH)
encoding
=
PQgetvalue
(
res
,
0
,
i_encoding
);
tablespace
=
PQgetvalue
(
res
,
0
,
i_tablespace
);
/* save dattablespace name for later dump routines */
dbDefaultTableSpace
=
strdup
(
tablespace
);
appendPQExpBuffer
(
creaQry
,
"CREATE DATABASE %s WITH TEMPLATE = template0"
,
fmtId
(
datname
));
if
(
strlen
(
encoding
)
>
0
)
...
...
@@ -1257,7 +1263,8 @@ dumpDatabase(Archive *AH)
appendStringLiteral
(
creaQry
,
encoding
,
true
);
}
if
(
strlen
(
tablespace
)
>
0
&&
strcmp
(
tablespace
,
"pg_default"
)
!=
0
)
appendPQExpBuffer
(
creaQry
,
" TABLESPACE = %s"
,
fmtId
(
tablespace
));
appendPQExpBuffer
(
creaQry
,
" TABLESPACE = %s"
,
fmtId
(
tablespace
));
appendPQExpBuffer
(
creaQry
,
";
\n
"
);
appendPQExpBuffer
(
delQry
,
"DROP DATABASE %s;
\n
"
,
...
...
@@ -4428,7 +4435,7 @@ dumpNamespace(Archive *fout, NamespaceInfo *nspinfo)
appendPQExpBuffer
(
q
,
"CREATE SCHEMA %s AUTHORIZATION %s"
,
qnspname
,
fmtId
(
nspinfo
->
usename
));
/* Add tablespace qualifier, if not default */
/* Add tablespace qualifier, if not default
for database
*/
if
(
strlen
(
nspinfo
->
nsptablespace
)
!=
0
)
appendPQExpBuffer
(
q
,
" TABLESPACE %s"
,
fmtId
(
nspinfo
->
nsptablespace
));
...
...
@@ -6652,13 +6659,16 @@ dumpTableSchema(Archive *fout, TableInfo *tbinfo)
appendPQExpBuffer
(
q
,
")"
);
}
/* Output tablespace clause if necessary */
if
(
strlen
(
tbinfo
->
reltablespace
)
!=
0
&&
strcmp
(
tbinfo
->
reltablespace
,
/* Output tablespace clause if different from parent schema's */
if
(
strcmp
(
tbinfo
->
reltablespace
,
tbinfo
->
dobj
.
namespace
->
nsptablespace
)
!=
0
)
{
appendPQExpBuffer
(
q
,
" TABLESPACE %s"
,
fmtId
(
tbinfo
->
reltablespace
));
if
(
strlen
(
tbinfo
->
reltablespace
)
!=
0
)
appendPQExpBuffer
(
q
,
" TABLESPACE %s"
,
fmtId
(
tbinfo
->
reltablespace
));
else
if
(
strlen
(
dbDefaultTableSpace
)
!=
0
)
appendPQExpBuffer
(
q
,
" TABLESPACE %s"
,
fmtId
(
dbDefaultTableSpace
));
}
appendPQExpBuffer
(
q
,
";
\n
"
);
...
...
@@ -6947,13 +6957,16 @@ dumpConstraint(Archive *fout, ConstraintInfo *coninfo)
appendPQExpBuffer
(
q
,
")"
);
/* Output tablespace clause if necessary */
if
(
strlen
(
indxinfo
->
tablespace
)
!=
0
&&
strcmp
(
indxinfo
->
tablespace
,
/* Output tablespace clause if different from parent table's */
if
(
strcmp
(
indxinfo
->
tablespace
,
indxinfo
->
indextable
->
reltablespace
)
!=
0
)
{
appendPQExpBuffer
(
q
,
" USING INDEX TABLESPACE %s"
,
fmtId
(
indxinfo
->
tablespace
));
if
(
strlen
(
indxinfo
->
tablespace
)
!=
0
)
appendPQExpBuffer
(
q
,
" USING INDEX TABLESPACE %s"
,
fmtId
(
indxinfo
->
tablespace
));
else
if
(
strlen
(
dbDefaultTableSpace
)
!=
0
)
appendPQExpBuffer
(
q
,
" USING INDEX TABLESPACE %s"
,
fmtId
(
dbDefaultTableSpace
));
}
appendPQExpBuffer
(
q
,
";
\n
"
);
...
...
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