diff options
| author | Tom Lane | 2010-02-17 04:19:41 +0000 |
|---|---|---|
| committer | Tom Lane | 2010-02-17 04:19:41 +0000 |
| commit | 50a90fac40db82680ac7ceacf3348f3f08f5343e (patch) | |
| tree | 24d7acc1eae21fad0063ba7c9f5acd0f08c4d7d6 /src/test | |
| parent | 37ec19a15ce452ee94f32ebc3d6a9a45868e82fd (diff) | |
Stamp HEAD as 9.0devel, and update various places that were referring to 8.5
(hope I got 'em all). Per discussion, this release will be 9.0 not 8.5.
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/regress/expected/copy2.out | 2 | ||||
| -rw-r--r-- | src/test/regress/sql/copy2.sql | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/expected/copy2.out b/src/test/regress/expected/copy2.out index 5f921dda8a2..15cbe029770 100644 --- a/src/test/regress/expected/copy2.out +++ b/src/test/regress/expected/copy2.out @@ -195,7 +195,7 @@ COPY y TO stdout WITH CSV FORCE QUOTE *; "Jackson, Sam","\h" "It is ""perfect""."," " "", --- Repeat above tests with new 8.5 option syntax +-- Repeat above tests with new 9.0 option syntax COPY y TO stdout (FORMAT CSV); "Jackson, Sam",\h "It is ""perfect"".", diff --git a/src/test/regress/sql/copy2.sql b/src/test/regress/sql/copy2.sql index ba0b0a62ad7..c2e8b037e74 100644 --- a/src/test/regress/sql/copy2.sql +++ b/src/test/regress/sql/copy2.sql @@ -130,7 +130,7 @@ COPY y TO stdout WITH CSV QUOTE '''' DELIMITER '|'; COPY y TO stdout WITH CSV FORCE QUOTE col2 ESCAPE E'\\'; COPY y TO stdout WITH CSV FORCE QUOTE *; --- Repeat above tests with new 8.5 option syntax +-- Repeat above tests with new 9.0 option syntax COPY y TO stdout (FORMAT CSV); COPY y TO stdout (FORMAT CSV, QUOTE '''', DELIMITER '|'); |
