Uh oh!
There was an error while loading. Please reload this page.
[SPARK-4861][SQL] Refactory command in spark sql - #3948
Conversation
SparkQA
commented
Jan 8, 2015
Test build #25217 has started for PR 3948 at commit
|
SparkQA
commented
Jan 8, 2015
Test build #25217 has finished for PR 3948 at commit
|
AmplabJenkins
commented
Jan 8, 2015
Test FAILed. |
SparkQA
commented
Jan 8, 2015
Test build #25218 has started for PR 3948 at commit
|
SparkQA
commented
Jan 8, 2015
Test build #25220 has started for PR 3948 at commit
|
SparkQA
commented
Jan 8, 2015
Test build #25218 has finished for PR 3948 at commit
|
AmplabJenkins
commented
Jan 8, 2015
Test PASSed. |
SparkQA
commented
Jan 8, 2015
Test build #25220 has finished for PR 3948 at commit
|
AmplabJenkins
commented
Jan 8, 2015
Test PASSed. |
scwf
commented
Jan 8, 2015
/cc @marmbrus |
marmbrus
commented
Jan 10, 2015
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.