summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavan Deolasee2019-07-16 03:55:15 +0000
committerPavan Deolasee2019-07-16 03:55:15 +0000
commit1c96d37bfe85e42cccddf658e5ece7af741e72cd (patch)
tree7fe2d0e09bde47670ae2cc7bc18b59441f45ce3a
parentd7646480e4819bc733a2250d4d36bfa93ba21a5f (diff)
Adjust expected output to reflect that CREATE TABLE AS EXECUTE is not supported.
-rw-r--r--src/test/regress/expected/create_table.out14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/test/regress/expected/create_table.out b/src/test/regress/expected/create_table.out
index 06e8139fe4..279a4e4710 100644
--- a/src/test/regress/expected/create_table.out
+++ b/src/test/regress/expected/create_table.out
@@ -260,17 +260,17 @@ NOTICE: relation "as_select1" already exists, skipping
DROP TABLE as_select1;
PREPARE select1 AS SELECT 1 as a;
CREATE TABLE as_select1 AS EXECUTE select1;
+ERROR: CREATE TABLE AS EXECUTE not yet supported
CREATE TABLE as_select1 AS EXECUTE select1;
-ERROR: relation "as_select1" already exists
+ERROR: CREATE TABLE AS EXECUTE not yet supported
SELECT * FROM as_select1;
- a
----
- 1
-(1 row)
-
+ERROR: relation "as_select1" does not exist
+LINE 1: SELECT * FROM as_select1;
+ ^
CREATE TABLE IF NOT EXISTS as_select1 AS EXECUTE select1;
-NOTICE: relation "as_select1" already exists, skipping
+ERROR: CREATE TABLE IF NOT EXISTS AS EXECUTE not yet supported
DROP TABLE as_select1;
+ERROR: table "as_select1" does not exist
DEALLOCATE select1;
-- check that the oid column is added before the primary key is checked
CREATE TABLE oid_pk (f1 INT, PRIMARY KEY(oid)) WITH OIDS;