Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
54e5caa4
Commit
54e5caa4
authored
19 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Add COPY CSV test that tests CSV output of \.
parent
9c72df4e
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/test/regress/expected/copy2.out
+5
-0
5 additions, 0 deletions
src/test/regress/expected/copy2.out
src/test/regress/sql/copy2.sql
+1
-0
1 addition, 0 deletions
src/test/regress/sql/copy2.sql
with
6 additions
and
0 deletions
src/test/regress/expected/copy2.out
+
5
−
0
View file @
54e5caa4
...
@@ -197,6 +197,11 @@ COPY testnl FROM stdin CSV;
...
@@ -197,6 +197,11 @@ COPY testnl FROM stdin CSV;
-- test end of copy marker
-- test end of copy marker
CREATE TEMP TABLE testeoc (a text);
CREATE TEMP TABLE testeoc (a text);
COPY testeoc FROM stdin CSV;
COPY testeoc FROM stdin CSV;
COPY testeoc TO stdout CSV;
a\.
\.b
c\.d
"\."
DROP TABLE x, y;
DROP TABLE x, y;
DROP FUNCTION fn_x_before();
DROP FUNCTION fn_x_before();
DROP FUNCTION fn_x_after();
DROP FUNCTION fn_x_after();
This diff is collapsed.
Click to expand it.
src/test/regress/sql/copy2.sql
+
1
−
0
View file @
54e5caa4
...
@@ -149,6 +149,7 @@ c\.d
...
@@ -149,6 +149,7 @@ c\.d
"
\.
"
"
\.
"
\
.
\
.
COPY
testeoc
TO
stdout
CSV
;
DROP
TABLE
x
,
y
;
DROP
TABLE
x
,
y
;
DROP
FUNCTION
fn_x_before
();
DROP
FUNCTION
fn_x_before
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment