mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
I guess the intention was to test incomplete SELECT statements, not
missing semicolons. I also added a SELECT statement without a target list. Manfred Koizar
This commit is contained in:
@ -3,7 +3,7 @@
|
||||
--
|
||||
|
||||
-- bad in postquel, but ok in postsql
|
||||
select 1
|
||||
select 1;
|
||||
|
||||
|
||||
--
|
||||
@ -20,11 +20,13 @@ select 1
|
||||
-- RETRIEVE
|
||||
|
||||
-- missing relation name
|
||||
select
|
||||
select;
|
||||
|
||||
-- no such relation
|
||||
select * from nonesuch;
|
||||
|
||||
-- missing target list
|
||||
select from pg_database;
|
||||
-- bad name in target list
|
||||
select nonesuch from pg_database;
|
||||
-- bad attribute name on lhs of operator
|
||||
|
Reference in New Issue
Block a user