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
2102ba4b
Commit
2102ba4b
authored
Feb 10, 2020
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Canonicalize some URLs
parent
541757f3
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
HISTORY
HISTORY
+1
-1
README
README
+1
-1
README.git
README.git
+1
-1
src/bin/psql/copy.c
src/bin/psql/copy.c
+1
-1
No files found.
HISTORY
View file @
2102ba4b
Release notes for all versions of PostgreSQL can be found on-line at
Release notes for all versions of PostgreSQL can be found on-line at
https://www.postgresql.org/docs/current/
static/
release.html
https://www.postgresql.org/docs/current/release.html
Distribution file sets include release notes for their version and preceding
Distribution file sets include release notes for their version and preceding
versions. Visit the file doc/src/sgml/html/release.html in an HTML browser.
versions. Visit the file doc/src/sgml/html/release.html in an HTML browser.
README
View file @
2102ba4b
...
@@ -11,7 +11,7 @@ and functions. This distribution also contains C language bindings.
...
@@ -11,7 +11,7 @@ and functions. This distribution also contains C language bindings.
PostgreSQL has many language interfaces, many of which are listed here:
PostgreSQL has many language interfaces, many of which are listed here:
https://www.postgresql.org/download
https://www.postgresql.org/download
/
See the file INSTALL for instructions on how to build and install
See the file INSTALL for instructions on how to build and install
PostgreSQL. That file also lists supported operating systems and
PostgreSQL. That file also lists supported operating systems and
...
...
README.git
View file @
2102ba4b
...
@@ -6,7 +6,7 @@ git and so will not be present if you are using a git checkout.
...
@@ -6,7 +6,7 @@ git and so will not be present if you are using a git checkout.
If you are using a git checkout, you can view the most recent installation
If you are using a git checkout, you can view the most recent installation
instructions at:
instructions at:
https://www.postgresql.org/docs/devel/
static/
installation.html
https://www.postgresql.org/docs/devel/installation.html
Users compiling from git will also need compatible versions of Bison, Flex,
Users compiling from git will also need compatible versions of Bison, Flex,
and Perl, as discussed in the install documentation. These programs are not
and Perl, as discussed in the install documentation. These programs are not
...
...
src/bin/psql/copy.c
View file @
2102ba4b
...
@@ -628,7 +628,7 @@ handleCopyIn(PGconn *conn, FILE *copystream, bool isbinary, PGresult **res)
...
@@ -628,7 +628,7 @@ handleCopyIn(PGconn *conn, FILE *copystream, bool isbinary, PGresult **res)
/*
/*
* This code erroneously assumes '\.' on a line alone
* This code erroneously assumes '\.' on a line alone
* inside a quoted CSV string terminates the \copy.
* inside a quoted CSV string terminates the \copy.
* http://www.postgresql.org/message-id/E1TdNVQ-0001ju-GO@wrigleys.postgresql.org
* http
s
://www.postgresql.org/message-id/E1TdNVQ-0001ju-GO@wrigleys.postgresql.org
*/
*/
if
(
strcmp
(
buf
,
"
\\
.
\n
"
)
==
0
||
if
(
strcmp
(
buf
,
"
\\
.
\n
"
)
==
0
||
strcmp
(
buf
,
"
\\
.
\r\n
"
)
==
0
)
strcmp
(
buf
,
"
\\
.
\r\n
"
)
==
0
)
...
...
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