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 d7c1474 Add AuthenticationResultBuilder (#7301)
new 047a4ee Update MySQLCommandExecuteEngine and
PostgreSQLCommandExecuteEngine
new 589bccf Refactor package of shardingsphere-proxy-frontend-spi
new 952fa3a Merge pull request #7302 from terrymanu/dev
The 26681 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../proxy/frontend/auth/AuthenticationResultBuilder.java | 1 -
.../proxy/frontend/command/CommandExecutorTask.java | 3 ++-
.../proxy/frontend/netty/FrontendChannelInboundHandler.java | 2 +-
.../proxy/frontend/auth/AuthenticationResultBuilderTest.java | 1 -
.../proxy/frontend/command/CommandExecutorTaskTest.java | 3 ++-
.../fixture/DatabaseProtocolFrontendEngineFixture.java | 4 ++--
.../proxy/frontend/mysql/auth/MySQLAuthenticationEngine.java | 4 ++--
.../frontend/mysql/command/MySQLCommandExecuteEngine.java | 12 ++++++------
.../frontend/mysql/command/MySQLCommandExecutorFactory.java | 2 +-
.../mysql/command/admin/initdb/MySQLComInitDbExecutor.java | 2 +-
.../mysql/command/admin/ping/MySQLComPingExecutor.java | 2 +-
.../mysql/command/admin/quit/MySQLComQuitExecutor.java | 2 +-
.../command/generic/MySQLUnsupportedCommandExecutor.java | 2 +-
.../query/binary/close/MySQLComStmtCloseExecutor.java | 2 +-
.../query/binary/execute/MySQLComStmtExecuteExecutor.java | 2 +-
.../query/binary/prepare/MySQLComStmtPrepareExecutor.java | 2 +-
.../query/binary/reset/MySQLComStmtResetExecutor.java | 2 +-
.../text/fieldlist/MySQLComFieldListPacketExecutor.java | 2 +-
.../query/text/query/MySQLComQueryPacketExecutor.java | 2 +-
.../frontend/mysql/MySQLProtocolFrontendEngineTest.java | 2 +-
.../postgresql/auth/PostgreSQLAuthenticationEngine.java | 4 ++--
.../postgresql/command/PostgreSQLCommandExecuteEngine.java | 10 +++++-----
.../postgresql/command/PostgreSQLCommandExecutorFactory.java | 2 +-
.../command/generic/PostgreSQLComTerminationExecutor.java | 2 +-
.../generic/PostgreSQLUnsupportedCommandExecutor.java | 2 +-
.../command/query/binary/bind/PostgreSQLComBindExecutor.java | 2 +-
.../query/binary/describe/PostgreSQLComDescribeExecutor.java | 2 +-
.../query/binary/execute/PostgreSQLComExecuteExecutor.java | 2 +-
.../query/binary/parse/PostgreSQLComParseExecutor.java | 2 +-
.../command/query/binary/sync/PostgreSQLComSyncExecutor.java | 2 +-
.../command/query/text/PostgreSQLComQueryExecutor.java | 2 +-
.../postgresql/auth/PostgreSQLAuthenticationEngineTest.java | 2 +-
.../command/PostgreSQLCommandExecuteEngineTest.java | 2 +-
.../frontend/{engine => auth}/AuthenticationEngine.java | 2 +-
.../frontend/{engine => auth}/AuthenticationResult.java | 2 +-
.../frontend/{engine => command}/CommandExecuteEngine.java | 6 +++---
.../frontend/command/{ => executor}/CommandExecutor.java | 2 +-
.../command/{ => executor}/QueryCommandExecutor.java | 2 +-
.../proxy/frontend/spi/DatabaseProtocolFrontendEngine.java | 4 ++--
39 files changed, 54 insertions(+), 54 deletions(-)
rename
shardingsphere-proxy/shardingsphere-proxy-frontend/shardingsphere-proxy-frontend-spi/src/main/java/org/apache/shardingsphere/proxy/frontend/{engine
=> auth}/AuthenticationEngine.java (96%)
rename
shardingsphere-proxy/shardingsphere-proxy-frontend/shardingsphere-proxy-frontend-spi/src/main/java/org/apache/shardingsphere/proxy/frontend/{engine
=> auth}/AuthenticationResult.java (95%)
rename
shardingsphere-proxy/shardingsphere-proxy-frontend/shardingsphere-proxy-frontend-spi/src/main/java/org/apache/shardingsphere/proxy/frontend/{engine
=> command}/CommandExecuteEngine.java (93%)
rename
shardingsphere-proxy/shardingsphere-proxy-frontend/shardingsphere-proxy-frontend-spi/src/main/java/org/apache/shardingsphere/proxy/frontend/command/{
=> executor}/CommandExecutor.java (94%)
rename
shardingsphere-proxy/shardingsphere-proxy-frontend/shardingsphere-proxy-frontend-spi/src/main/java/org/apache/shardingsphere/proxy/frontend/command/{
=> executor}/QueryCommandExecutor.java (96%)