Description
ANTLR currently emits the following warning during compilation:
warning(200): org/apache/spark/sql/catalyst/parser/SparkSqlParser.g:938:7: Decision can match input such as "KW_USING Identifier" using multiple alternatives: 2, 3 As a result, alternative(s) 3 were disabled for that input
This means that some of the functionality of the parser is disabled. This is introduced by the migration of the DDLParsers (https://github.com/apache/spark/pull/10723). We should be able to fix this by introducing a syntactic predicate for USING.
cc viirya