Repository: trafodion Updated Branches: refs/heads/master ecc1a5659 -> b09048afc
[TRAFODION-3153] Fix issue with CREATE EXTERNAL TABLE Project: http://git-wip-us.apache.org/repos/asf/trafodion/repo Commit: http://git-wip-us.apache.org/repos/asf/trafodion/commit/133fc539 Tree: http://git-wip-us.apache.org/repos/asf/trafodion/tree/133fc539 Diff: http://git-wip-us.apache.org/repos/asf/trafodion/diff/133fc539 Branch: refs/heads/master Commit: 133fc53973cbd82f12713217f1e00c6a71190dde Parents: 6a9e57d Author: Dave Birdsall <[email protected]> Authored: Wed Jul 18 22:05:38 2018 +0000 Committer: Dave Birdsall <[email protected]> Committed: Wed Jul 18 22:05:38 2018 +0000 ---------------------------------------------------------------------- core/sql/parser/sqlparser.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafodion/blob/133fc539/core/sql/parser/sqlparser.y ---------------------------------------------------------------------- diff --git a/core/sql/parser/sqlparser.y b/core/sql/parser/sqlparser.y index bf9007b..f89dd13 100755 --- a/core/sql/parser/sqlparser.y +++ b/core/sql/parser/sqlparser.y @@ -25411,7 +25411,7 @@ create_table_start_tokens : $$ = tableTokens; SqlParser_CurrentParser->hiveDDLInfo_-> - setValues(TRUE, StmtDDLonHiveObjects::CREATE_, StmtDDLonHiveObjects::TABLE_, $3); + setValues(TRUE, StmtDDLonHiveObjects::CREATE_, StmtDDLonHiveObjects::TABLE_, $4); } | TOK_CREATE TOK_IMPLICIT TOK_EXTERNAL TOK_TABLE optional_if_not_exists_clause
