-
Notifications
You must be signed in to change notification settings - Fork 590
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
feat: SQL commands to show sources and connectors #7344
Comments
upvote for solution 1. connector should be seen as a component inside a source or table. If a connector is created within a table, it can not be seen as a source. |
I concur with @tabVersion |
Since |
So far we've supported a bunch of ways for displaying the tables and sources:
There is no need to add more. Let's close the issue. |
After #7110 and #7281, we should support showing all connectors (and maybe showing all sources as well).
Two solutions for this:
SHOW SOURCES
to show all sources created byCREATE SOURCE
. Do not include those created byCREATE TABLE WITH (connector = 'xxx')
.SHOW CONNECTORS
to show all connectors created by bothCREATE SOURCE
andCREATE TABLE WITH (connector = 'xxx')
.Only support
SHOW SOURCES
to show all connectors created by bothCREATE SOURCE
andCREATE TABLE WITH (connector = 'xxx')
.The text was updated successfully, but these errors were encountered: