-
Notifications
You must be signed in to change notification settings - Fork 28.9k
[SPARK-4861][SQL] Refactory command in spark sql #3948
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Test build #25217 has started for PR 3948 at commit
|
|
Test build #25217 has finished for PR 3948 at commit
|
|
Test FAILed. |
6677766 to
2c62e9d
Compare
|
Test build #25218 has started for PR 3948 at commit
|
|
Test build #25220 has started for PR 3948 at commit
|
|
Test build #25218 has finished for PR 3948 at commit
|
|
Test PASSed. |
|
Test build #25220 has finished for PR 3948 at commit
|
|
Test PASSed. |
|
/cc @marmbrus |
|
Thanks, merging to master. |
Follow up for #3712.
This PR finally remove
CommandStrategyand make all commands followRunnableCommandso they can go withcase r: RunnableCommand => ExecutedCommand(r) :: Nil.One exception is the
DescribeCommandof hive, which is a special case and need to distinguish hive table and temporary table, so still keepHiveCommandStrategyhere.