summaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorSimon Riggs2012-06-10 07:41:01 +0000
committerSimon Riggs2012-06-10 07:41:01 +0000
commit28ac7972873bd314d4837807396fe44571b5cb50 (patch)
treec59d9dc1f32934a6637a62374ba47815c81d9022 /src/test
parent72335a20156b19be3a53ef686e0b31140c6f38e5 (diff)
Revert error message on GLOBAL/LOCAL pending further discussion
Diffstat (limited to 'src/test')
-rw-r--r--src/test/regress/expected/create_table.out16
-rw-r--r--src/test/regress/sql/create_table.sql5
2 files changed, 0 insertions, 21 deletions
diff --git a/src/test/regress/expected/create_table.out b/src/test/regress/expected/create_table.out
index 0b2cbc734a8..d20790f9098 100644
--- a/src/test/regress/expected/create_table.out
+++ b/src/test/regress/expected/create_table.out
@@ -220,19 +220,3 @@ NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "doubly_temp_pkey
CREATE TEMP TABLE public.temp_to_perm (a int primary key); -- not OK
ERROR: cannot create temporary relation in non-temporary schema
DROP TABLE unlogged1, public.unlogged2;
-CREATE GLOBAL TEMPORARY TABLE global_temp1 (a int, b text); -- not yet OK
-ERROR: GLOBAL TEMPORARY not yet implemented
-LINE 1: CREATE GLOBAL TEMPORARY TABLE global_temp1 (a int, b text);
- ^
-CREATE GLOBAL TEMP TABLE global_temp2 (a int, b text); -- not yet OK
-ERROR: GLOBAL TEMPORARY not yet implemented
-LINE 1: CREATE GLOBAL TEMP TABLE global_temp2 (a int, b text);
- ^
-CREATE LOCAL TEMP TABLE local_temp (a int, b text); -- not yet OK
-ERROR: LOCAL TEMPORARY not yet implemented
-LINE 1: CREATE LOCAL TEMP TABLE local_temp (a int, b text);
- ^
-CREATE LOCAL TEMP TABLE local_temp (a int, b text); -- not yet OK
-ERROR: LOCAL TEMPORARY not yet implemented
-LINE 1: CREATE LOCAL TEMP TABLE local_temp (a int, b text);
- ^
diff --git a/src/test/regress/sql/create_table.sql b/src/test/regress/sql/create_table.sql
index ab0145531cf..a050e8b6d1a 100644
--- a/src/test/regress/sql/create_table.sql
+++ b/src/test/regress/sql/create_table.sql
@@ -250,8 +250,3 @@ CREATE TEMP TABLE explicitly_temp (a int primary key); -- also OK
CREATE TEMP TABLE pg_temp.doubly_temp (a int primary key); -- also OK
CREATE TEMP TABLE public.temp_to_perm (a int primary key); -- not OK
DROP TABLE unlogged1, public.unlogged2;
-
-CREATE GLOBAL TEMPORARY TABLE global_temp1 (a int, b text); -- not yet OK
-CREATE GLOBAL TEMP TABLE global_temp2 (a int, b text); -- not yet OK
-CREATE LOCAL TEMP TABLE local_temp (a int, b text); -- not yet OK
-CREATE LOCAL TEMP TABLE local_temp (a int, b text); -- not yet OK