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
552d5935
Commit
552d5935
authored
Jun 05, 2000
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update for 7.0.2.
parent
154c0a0b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
7 deletions
+9
-7
INSTALL
INSTALL
+3
-2
doc/src/sgml/install.sgml
doc/src/sgml/install.sgml
+4
-3
src/backend/commands/copy.c
src/backend/commands/copy.c
+2
-2
No files found.
INSTALL
View file @
552d5935
...
...
@@ -199,7 +199,7 @@ For a fresh install or upgrading from previous releases of PostgreSQL:
works.
If you used pg_dumpall, move the old director
ies
out of the
If you used pg_dumpall, move the old director
y
out of the
way. Type the following:
> mv /usr/local/pgsql /usr/local/pgsql.old
...
...
@@ -250,7 +250,8 @@ For a fresh install or upgrading from previous releases of PostgreSQL:
then the above was necessary. Simply do this step then.
9. Create the database installation (the working data files). To do this
9. If you moved the old directory out of the way,
create the database installation (the working data files). To do this
you must log in to your PostgreSQL superuser account. It will not work
as root.
...
...
doc/src/sgml/install.sgml
View file @
552d5935
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/install.sgml,v 1.4
4 2000/06/05 10:57:57
momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/install.sgml,v 1.4
5 2000/06/05 17:07:53
momjian Exp $
-->
<chapter id="install">
...
...
@@ -326,7 +326,7 @@ All of PostgreSQL is successfully made. Ready to install.
</tip>
<para>
If you used pg_dumpall, move the old director
ies
out of the way.
If you used pg_dumpall, move the old director
y
out of the way.
Type the following:
<programlisting>
> mv /usr/local/pgsql /usr/local/pgsql.old
...
...
@@ -392,7 +392,8 @@ libpq.so.2.1: cannot open shared object file: No such file or directory
<step performance="required">
<para>
Create the database installation (the working data files).
If you moved the old directory out of the way,
create the database installation (the working data files).
To do this you must log in to your
<productname>PostgreSQL</productname> superuser account. It will not
work as root.
...
...
src/backend/commands/copy.c
View file @
552d5935
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.11
1 2000/06/05 07:28:42 tgl
Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.11
2 2000/06/05 17:07:56 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -307,7 +307,7 @@ DoCopy(char *relname, bool binary, bool oids, bool from, bool pipe,
if
(
from
)
{
/* copy from file to database */
if
(
rel
->
rd_rel
->
relkind
==
RELKIND_SEQUENCE
)
elog
(
ERROR
,
"You can
'
t change sequence relation %s"
,
relname
);
elog
(
ERROR
,
"You can
no
t change sequence relation %s"
,
relname
);
if
(
pipe
)
{
if
(
IsUnderPostmaster
)
...
...
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