diff options
Diffstat (limited to 'src/test/regress/expected/without_oid.out')
| -rw-r--r-- | src/test/regress/expected/without_oid.out | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/test/regress/expected/without_oid.out b/src/test/regress/expected/without_oid.out index 5e46aa8ebe..c32daf815d 100644 --- a/src/test/regress/expected/without_oid.out +++ b/src/test/regress/expected/without_oid.out @@ -43,6 +43,8 @@ SELECT count(oid) FROM wi; -- should fail SELECT count(oid) FROM wo; ERROR: column "oid" does not exist +LINE 1: SELECT count(oid) FROM wo; + ^ VACUUM ANALYZE wi; VACUUM ANALYZE wo; SELECT min(relpages) < max(relpages), min(reltuples) - max(reltuples) @@ -76,6 +78,8 @@ SELECT count(oid) FROM create_table_test2; -- should fail SELECT count(oid) FROM create_table_test3; ERROR: column "oid" does not exist +LINE 1: SELECT count(oid) FROM create_table_test3; + ^ PREPARE table_source(int) AS SELECT a + b AS c1, a - b AS c2, $1 AS c3 FROM create_table_test; CREATE TABLE execute_with WITH OIDS AS EXECUTE table_source(1); @@ -89,6 +93,8 @@ SELECT count(oid) FROM execute_with; -- should fail SELECT count(oid) FROM execute_without; ERROR: column "oid" does not exist +LINE 1: SELECT count(oid) FROM execute_without; + ^ DROP TABLE create_table_test; DROP TABLE create_table_test2; DROP TABLE create_table_test3; |
