-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-37494][SQL] Unify v1 and v2 options output of SHOW CREATE TABLE command
#34753
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
|
Kubernetes integration test starting |
|
Kubernetes integration test status failure |
|
@cloud-fan @MaxGekk Could you take a look? Thank you. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
keep consistent with v2. also sort it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This probably has nothing to do with this PR.
|
Test build #145754 has finished for PR 34753 at commit
|
sql/core/src/test/scala/org/apache/spark/sql/ShowCreateTableSuite.scala
Outdated
Show resolved
Hide resolved
97e52cb to
223e71e
Compare
sql/core/src/test/scala/org/apache/spark/sql/ShowCreateTableSuite.scala
Outdated
Show resolved
Hide resolved
223e71e to
8ebf385
Compare
|
Kubernetes integration test starting |
|
Test build #145805 has finished for PR 34753 at commit
|
|
Kubernetes integration test starting |
|
Kubernetes integration test status failure |
|
Test build #145809 has finished for PR 34753 at commit
|
|
Kubernetes integration test status failure |
8ebf385 to
7771b14
Compare
|
Kubernetes integration test starting |
|
Kubernetes integration test status failure |
|
thanks, merging to master! |
|
Test build #145833 has finished for PR 34753 at commit
|
What changes were proposed in this pull request?
SHOW CREATE TABLEcommand behaviors that options output match v2. eg:'key' = 'value'Why are the changes needed?
match v2 behaviors and disscuss at #comments
Does this PR introduce any user-facing change?
Yes. when
SHOW CREATE TABLEthe output of properties and options is sorted and options output is like'key' = 'value'How was this patch tested?
Add test case.