INVALID_SQL_SYNTAX error class
Invalid SQL syntax:
ANALYZE TABLE
(S) … COMPUTE DELTA STATISTICS <ctx>
doesn't support: FOR ALL COLUMNS
, FOR COLUMNS
, NOSCAN
, and PARTITION
clauses.
ANALYZE TABLE
(S) … COMPUTE STATISTICS
… <ctx>
must be either NOSCAN
or empty.
COMMENT ON COLUMN
requires an identifier with at least two parts. Please qualify the column with table or view name.
CREATE FUNCTION
with generated columns as parameters is not allowed.
SYNC
and ASYNC
cannot be specified together.
Cannot create a routine with both IF NOT EXISTS
and REPLACE
specified.
CREATE TEMPORARY FUNCTION
with specifying a database(<database>
) is not allowed.
CREATE TEMPORARY FUNCTION
with IF NOT EXISTS
is not allowed.
Partition key <partKey>
must set value.
The function <prettyName>
does not support <syntax>
.
Expected a column reference for transform <transform>
: <expr>
.
Syntax error: call to table-valued function is invalid because parentheses are missing around the provided TABLE
argument <argumentName>
; please surround this with parentheses and try again.
Table valued function cannot specify database name: <funcName>
.
Window reference <windowName>
is not a window specification.
LATERAL
can only be used with subquery and table-valued functions.
<statement>
with multiple part name(<name>
) is not allowed.
option or property key <key>
is invalid; only <supported>
are supported
option or property key <key>
is invalid; user-defined functions are not allowed
The definition of window <windowName>
is repetitive.
Invalid pattern in SHOW FUNCTIONS
: <pattern>
. It must be a "STRING
" literal.
SHOW <scope> FUNCTIONS
not supported.
The transform<transform>`` requires ``<expectedNum>`` parameters but the actual number is ``<actualNum>
.
Cannot resolve window reference <windowName>
.
Unsupported function name <funcName>
.
Unsupported SQL statement: <sqlText>
.
The definition of a SQL variable requires either a datatype or a DEFAULT
clause.
For example, use DECLARE name STRING
or DECLARE name = 'SQL'
instead of DECLARE name
.