## TABLE is shorthand for: SELECT * FROM a;
## used e.g. in CREATE VIEW v AS TABLE t

parse
TABLE a
----
TABLE a
TABLE a -- fully parenthesized
TABLE a -- literals removed
TABLE _ -- identifiers removed

parse
EXPLAIN TABLE a
----
EXPLAIN TABLE a
EXPLAIN TABLE a -- fully parenthesized
EXPLAIN TABLE a -- literals removed
EXPLAIN TABLE _ -- identifiers removed

parse
TABLE [123 AS a]
----
TABLE [123 AS a]
TABLE [123 AS a] -- fully parenthesized
TABLE [123 AS a] -- literals removed
TABLE [123 AS _] -- identifiers removed

error
TABLE abc[TRUE]
----
at or near "[": syntax error
DETAIL: source SQL:
TABLE abc[TRUE]
         ^

parse
VALUES ("") -- nb: double quote is an identifier, not a string
----
VALUES ("") -- normalized!
VALUES (("")) -- fully parenthesized
VALUES ("") -- literals removed
VALUES (_) -- identifiers removed
