-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-33630][SQL] Support SHOW TABLES command as table valued function #31257
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
|
This PR should wait #31245 completed |
|
Kubernetes integration test starting |
| } | ||
| } | ||
|
|
||
| test("SPARK-33630: Support SHOW command as table valued function") { |
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.
Please, place tests like this to the unified test suites for v1/v2 commands. See ShowTablesSuite.
|
Kubernetes integration test status success |
|
Test build #134258 has finished for PR 31257 at commit
|
|
retest this please |
|
Kubernetes integration test starting |
|
Kubernetes integration test status failure |
|
Test build #135552 has finished for PR 31257 at commit
|
|
Is this related to #31548 ? |
Yea, do same thing but different ways. I have raise this pr one month ago, hmmm since this is pending by https://issues.apache.org/jira/browse/SPARK-34157, so I left it until that pr merge. Seems his method is more general, looks good. |
|
Kubernetes integration test starting |
|
Kubernetes integration test status failure |
|
Test build #135554 has finished for PR 31257 at commit
|
|
Kubernetes integration test starting |
|
Kubernetes integration test status failure |
|
Test build #137562 has finished for PR 31257 at commit
|
|
Test build #138940 has finished for PR 31257 at commit
|
|
We're closing this PR because it hasn't been updated in a while. This isn't a judgement on the merit of the PR in any way. It's just a way of keeping the PR queue manageable. |
What changes were proposed in this pull request?
Support
SHOW TABLEScommand as a table valued function.So user can be easy to reach metadata system information use SQL and analysis directory.
Why are the changes needed?
user can be easy to reach metadata system information use SQL and analysis directory.
Does this PR introduce any user-facing change?
Yea, user can get table list by call table valued function
show_table()How was this patch tested?
Added UT