This is an automated email from the ASF dual-hosted git repository.
panjuan pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git.
from b48fd36 Change agent conf (#12024)
add aabeaf1 Support information_schema.schemata query (#12011)
No new revisions were added by this update.
Summary of changes:
.../text/TextProtocolBackendHandlerFactory.java | 6 +-
.../admin/DatabaseAdminBackendHandlerFactory.java | 26 +++-
.../admin/DatabaseAdminUpdateBackendHandler.java | 4 +-
.../text/admin/executor/DatabaseAdminExecutor.java | 5 +-
.../executor/DatabaseAdminExecutorFactory.java | 17 ++-
.../admin/mysql/MySQLAdminExecutorFactory.java | 35 ++---
.../MySQLInformationSchemaExecutorFactory.java | 47 ++++++
.../admin/mysql/enums/InformationSchemataEnum.java | 20 ++-
.../information/SelectSchemataExecutor.java | 157 +++++++++++++++++++++
.../TextProtocolBackendHandlerFactoryTest.java | 3 +
.../information/SelectSchemataExecutorTest.java | 93 ++++++++++++
11 files changed, 375 insertions(+), 38 deletions(-)
create mode 100644
shardingsphere-proxy/shardingsphere-proxy-backend/src/main/java/org/apache/shardingsphere/proxy/backend/text/admin/mysql/MySQLInformationSchemaExecutorFactory.java
copy
shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-core/src/main/java/org/apache/shardingsphere/encrypt/rule/aware/EncryptRuleAware.java
=>
shardingsphere-proxy/shardingsphere-proxy-backend/src/main/java/org/apache/shardingsphere/proxy/backend/text/admin/mysql/enums/InformationSchemataEnum.java
(73%)
create mode 100644
shardingsphere-proxy/shardingsphere-proxy-backend/src/main/java/org/apache/shardingsphere/proxy/backend/text/admin/mysql/executor/information/SelectSchemataExecutor.java
create mode 100644
shardingsphere-proxy/shardingsphere-proxy-backend/src/test/java/org/apache/shardingsphere/proxy/backend/text/admin/mysql/executor/information/SelectSchemataExecutorTest.java