-
Notifications
You must be signed in to change notification settings - Fork 1k
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: add 'show connector plugins' syntax #7284
Conversation
return Optional.of( | ||
new ConnectorPluginsList( | ||
configuredStatement.getStatementText(), | ||
warnings, |
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.
warnings, | |
warnings, |
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.
Done
} | ||
|
||
final List<SimpleConnectorPluginInfo> pluginInfos = new ArrayList<>(); | ||
final List<KsqlWarning> warnings = new ArrayList<>(); |
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.
Is this supposed to be an empty list? If so, could we remove warnings
from ConnectorPluginsList
?
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.
Done
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.
lgtm
511c910
to
88fa268
Compare
Description
What behavior do you want to change, why, how does your patch achieve the changes?
Feature #4623
Add new
SHOW CONNECTOR PLUGINS
syntax that displays the all available connector plugins from Connect.Testing done
Describe the testing strategy. Unit and integration tests are expected for any behavior changes.
Added unit tests
Verified manually in CLI
Reviewer checklist