You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Yesheng Ma (JIRA)" <ji...@apache.org> on 2019/05/31 22:26:00 UTC

[jira] [Created] (SPARK-27914) Improve parser error message for ALTER TABLE ADD COLUMNS statement

Yesheng Ma created SPARK-27914:
----------------------------------

             Summary: Improve parser error message for ALTER TABLE ADD COLUMNS statement
                 Key: SPARK-27914
                 URL: https://issues.apache.org/jira/browse/SPARK-27914
             Project: Spark
          Issue Type: Bug
          Components: SQL
    Affects Versions: 3.0.0
            Reporter: Yesheng Ma


The {{ALTER TABLE ADD COLUMNS}} statement is often misspelled as {{ALTER TABLE ADD COLUMN}}. However, when a user queries such a statement, the error message is confusing. For example, the error message for


{code:sql}
ALTER TABLE test ADD COLUMN (x INT);
{code}

is
{code:java}
no viable alternative at input 'ALTER TABLE test ADD COLUMN'(line 1, pos 21)
{code}
which is misleading.
 

One possible way to fix is to explicitly capture these statements in a grammar rule and print user-friendly error message to instruct users to change {{COLUMN}} to {{COLUMNS}}.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org