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
c4826cf0
Commit
c4826cf0
authored
Mar 21, 2006
by
Alvaro Herrera
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge the loading of shared object descriptions with regular descriptions,
both in code and in the messages emitted to the user.
parent
af00c04c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
35 deletions
+9
-35
src/bin/initdb/initdb.c
src/bin/initdb/initdb.c
+9
-35
No files found.
src/bin/initdb/initdb.c
View file @
c4826cf0
...
...
@@ -42,7 +42,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
* Portions taken from FreeBSD.
*
* $PostgreSQL: pgsql/src/bin/initdb/initdb.c,v 1.11
3 2006/03/05 15:58:50 momjian
Exp $
* $PostgreSQL: pgsql/src/bin/initdb/initdb.c,v 1.11
4 2006/03/21 17:54:28 alvherre
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -178,7 +178,6 @@ static void unlimit_systables(void);
static
void
setup_depend
(
void
);
static
void
setup_sysviews
(
void
);
static
void
setup_description
(
void
);
static
void
setup_shared_description
(
void
);
static
void
setup_conversion
(
void
);
static
void
setup_privileges
(
void
);
static
void
set_info_version
(
void
);
...
...
@@ -1725,7 +1724,7 @@ setup_description(void)
{
PG_CMD_DECL
;
fputs
(
_
(
"loading
pg_description
... "
),
stdout
);
fputs
(
_
(
"loading
system objects' descriptions
... "
),
stdout
);
fflush
(
stdout
);
snprintf
(
cmd
,
sizeof
(
cmd
),
...
...
@@ -1749,41 +1748,18 @@ setup_description(void)
" FROM tmp_pg_description t, pg_class c "
" WHERE c.relname = t.classname;
\n
"
);
PG_CMD_CLOSE
;
check_ok
();
}
/*
* load shared description data
*/
static
void
setup_shared_description
(
void
)
{
PG_CMD_DECL
;
fputs
(
_
(
"loading pg_shdescription ... "
),
stdout
);
fflush
(
stdout
);
snprintf
(
cmd
,
sizeof
(
cmd
),
"
\"
%s
\"
%s template1 >%s"
,
backend_exec
,
backend_options
,
DEVNULL
);
PG_CMD_OPEN
;
PG_CMD_PUTS
(
"CREATE TEMP TABLE tmp_pg_shdescription ( "
" objoid oid, "
" classname name, "
" description text) WITHOUT OIDS;
\n
"
);
" objoid oid, "
" classname name, "
" description text) WITHOUT OIDS;
\n
"
);
PG_CMD_PRINTF1
(
"COPY tmp_pg_shdescription FROM '%s';
\n
"
,
shdesc_file
);
shdesc_file
);
PG_CMD_PUTS
(
"INSERT INTO pg_shdescription "
" SELECT t.objoid, c.oid, t.description "
" FROM tmp_pg_shdescription t, pg_class c "
" WHERE c.relname = t.classname;
\n
"
);
" SELECT t.objoid, c.oid, t.description "
" FROM tmp_pg_shdescription t, pg_class c "
" WHERE c.relname = t.classname;
\n
"
);
PG_CMD_CLOSE
;
...
...
@@ -2960,8 +2936,6 @@ main(int argc, char *argv[])
setup_description
();
setup_shared_description
();
setup_conversion
();
setup_privileges
();
...
...
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