Uh oh!
There was an error while loading. Please reload this page.
[SQL] Implement Describe Table for SQLContext - #4207
Conversation
yanboliang
commented
Jan 26, 2015
SparkQA
commented
Jan 26, 2015
Test build #26095 has started for PR 4207 at commit
|
SparkQA
commented
Jan 26, 2015
Test build #26095 has finished for PR 4207 at commit
|
AmplabJenkins
commented
Jan 26, 2015
Test FAILed. |
SparkQA
commented
Jan 26, 2015
Test build #26096 has started for PR 4207 at commit
|
SparkQA
commented
Jan 26, 2015
Test build #26096 has finished for PR 4207 at commit
|
AmplabJenkins
commented
Jan 26, 2015
Test FAILed. |
SparkQA
commented
Jan 27, 2015
Test build #26158 has started for PR 4207 at commit
|
SparkQA
commented
Jan 27, 2015
Test build #26158 has finished for PR 4207 at commit
|
AmplabJenkins
commented
Jan 27, 2015
Test PASSed. |
yanboliang
commented
Jan 27, 2015
Move Describe command parser to DDLParser which can implement do not throw error when parse exception. So that some HiveContext particular describe command can be parse by fallback Hive parser and run by Hive native command. |
lianhuiwang
commented
Jan 27, 2015
firstly,we need to rename title of PR to [SPARK-5324][SQL] Implement Describe Table for SQLContext. i find that code of this PR is not the latest code. i donot agree that move DescribeCommand to a class of SparkPlan. it keep to be a class of LogicalPlan. |
rxin
commented
Jan 28, 2015
Thanks for submitting the pull request. Are these two PRs working on the same thing? #4227 Would be great if you two can chime in on each other's PR. |
OopsOutOfMemory
commented
Jan 28, 2015
hi, @yanbohappy, I've already worked in this. |
There was a problem hiding this comment.
IntegerType and StringType ? should be int, string
OopsOutOfMemory
commented
Jan 28, 2015
hi, @yanbohappy Thanks for working on this. But by the way, this JIRA(SPARK-5324) |
yanboliang
commented
Jan 28, 2015
@lianhuiwang In this PR #3948, CommandStrategy had been removed and command had been refactor. |
yanboliang
commented
Jan 28, 2015
@OopsOutOfMemory Since you have go deep into this issue and I agree your PR is more mature. So close this one. |
rxin
commented
Jan 28, 2015
@yanbohappy thanks for the discussion. |
OopsOutOfMemory
commented
Jan 28, 2015
@yanbohappy thanks for the discussion and the work efforts : ) |
Initial code snippet for Describe Table command
(note: HiveContext also support "DESCRIBE [FORMATTED] [db_name.]table_name PARTITION partition_column_name" and "DESCRIBE [FORMATTED] [db_name.]table_name column_name" is implement by Hive native command)