summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc G. Fournier1997-01-16 16:11:09 +0000
committerMarc G. Fournier1997-01-16 16:11:09 +0000
commitf8a41a0b9151c3edf05ec30613ea36b2310a42d8 (patch)
tree96ddb7f51770554e20d19ae1b5b209635a1642d1
parente141fc661c3daa289cdfa1df5c52ab524a5b88c5 (diff)
This is one of those patches that obviously fixes something, just not
sure exactly what it is it fixes...
-rw-r--r--src/test/regress/expected.input32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/test/regress/expected.input b/src/test/regress/expected.input
index 5e3e57c0809..9d2b05e7a28 100644
--- a/src/test/regress/expected.input
+++ b/src/test/regress/expected.input
@@ -3919,9 +3919,9 @@ QUERY: COPY BINARY stud_emp FROM '_CWD_/stud_emp.data';
QUERY: SELECT * FROM stud_emp;
name |age|location |salary|manager|gpa|percent
-----+---+----------+------+-------+---+-------
-jeff | 23|(8,7.7) | 600|sharon |3.5|
-cim | 30|(10.5,4.7)| 400| |3.4|
-linda| 19|(0.9,6.1) | 100| |2.9|
+jeff | 23|(8,7.7) | 600|sharon |3.5| 0
+cim | 30|(10.5,4.7)| 400| |3.4| 0
+linda| 19|(0.9,6.1) | 100| |2.9| 0
(3 rows)
QUERY: SELECT count(*) FROM onek;
@@ -6764,11 +6764,11 @@ xacttest
(63 rows)
QUERY: SELECT * FROM arrtest;
-a |b |c |d |e
------------+---------------------+-------------+-----------------+-------------
-{1,2,3,4,5}|{{{0,0}},{{1,2}}} |{} |{} |
-{11,12,23} |{{{3},{4}},{{4},{5}}}|{"foobar"} |{{"elt1","elt2"}}|{"3.4","6.7"}
-{} |{{{3,4},{0,0}}} |{"foo","bar"}|{{"bar"},{"foo"}}|
+a |b |c |d |e
+-----------+---------------+-------------+-----------------+-------------
+{1,2,3,4,5}|{{{0,0},{1,2}}}|{} |{} |
+{11,12,23} |{{3,4},{4,5}} |{"foobar"} |{{"elt1","elt2"}}|{"3.4","6.7"}
+{} |{3,4} |{"foo","bar"}|{"bar","foo"} |
(3 rows)
QUERY: SELECT arrtest.a[1],
@@ -6780,8 +6780,8 @@ QUERY: SELECT arrtest.a[1],
a|b|c |d |e
--+-+------+----+-
1|0| | |
-11|3|foobar|elt1|
- |3|foo |bar |
+11| |foobar|elt1|
+ | |foo | |
(3 rows)
QUERY: SELECT arrtest.a[1:3],
@@ -6791,17 +6791,17 @@ QUERY: SELECT arrtest.a[1:3],
FROM arrtest;
a |b |c |d
----------+---------------+-------------+-----------------
-{1,2,3} | | |
+{1,2,3} |{{{0,0},{1,2}}}| |
{11,12,23}| | |{{"elt1","elt2"}}
- |{{{3,4},{0,0}}}|{"foo","bar"}|
+ | |{"foo","bar"}|
(3 rows)
QUERY: SELECT array_dims(arrtest.b) AS x;
x
---------------
-[1:2][1:1][1:2]
-[1:2][1:2][1:1]
[1:1][1:2][1:2]
+[1:2][1:2]
+[1:2]
(3 rows)
QUERY: SELECT *
@@ -6819,9 +6819,9 @@ QUERY: SELECT arrtest.a[1:3],
FROM arrtest;
a |b |c |d
----------+---------------+-------------+-----------------
-{1,2,3} | | |
+{1,2,3} |{{{0,0},{1,2}}}| |
{11,12,23}| | |{{"elt1","elt2"}}
- |{{{3,4},{0,0}}}|{"foo","bar"}|
+ | |{"foo","bar"}|
(3 rows)
=============== running error queries ... =================