-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
[Enhancement] (nereids)implement showPluginsCommand in nereids #43131
Conversation
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
run buildall |
TPC-H: Total hot run time: 41236 ms
|
TPC-DS: Total hot run time: 196540 ms
|
ClickBench: Total hot run time: 32.81 s
|
9a9444b
to
1379302
Compare
please resolve conflicts |
1379302
to
c00d7b8
Compare
run buildall |
c00d7b8
to
36513c5
Compare
run buildall |
1 similar comment
run buildall |
* show plugins command | ||
*/ | ||
public class ShowPluginsCommand extends ShowCommand { | ||
public static final Logger LOG = LogManager.getLogger(ShowPluginsCommand.class); |
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.
public static final Logger LOG = LogManager.getLogger(ShowPluginsCommand.class); |
PR approved by at least one committer and no changes requested. |
PR approved by anyone and no changes requested. |
4d626e3
to
8be1501
Compare
run buildall |
PR approved by at least one committer and no changes requested. |
What problem does this PR solve?
implement show plugins in nereids
Issue Number: close #42733
Related PR: #xxx
Problem Summary:
Check List (For Committer)
Test
mysql> show plugins\G
*************************** 1. row ***************************
Name: __builtin_AuditLoader
Type: AUDIT
Description: builtin audit loader, to load audit log to internal table
Version: 2.1.0
JavaVersion: 1.8.31
ClassName: org.apache.doris.plugin.audit.AuditLoader
SoName: NULL
Sources: Builtin
Status: INSTALLED
Properties: {}
*************************** 2. row ***************************
Name: __builtin_AuditLogBuilder
Type: AUDIT
Description: builtin audit logger
Version: 0.12.0
JavaVersion: 1.8.31
ClassName: org.apache.doris.plugin.audit.AuditLogBuilder
SoName: NULL
Sources: Builtin
Status: INSTALLED
Properties: {}
*************************** 3. row ***************************
Name: __builtin_SqlDialectConverter
Type: DIALECT
Description: builtin sql dialect converter
Version: 2.1.0
JavaVersion: 1.8.31
ClassName: org.apache.doris.plugin.dialect.HttpDialectConverterPlugin
SoName: NULL
Sources: Builtin
Status: INSTALLED
Properties: {}
3 rows in set (3.17 sec)
Behavior changed:
Does this need documentation?
Release note
None
Check List (For Reviewer who merge this PR)