You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by zh...@apache.org on 2022/10/15 03:02:50 UTC

[shardingsphere] branch master updated (aa246afa10e -> 9e3bb7e6def)

This is an automated email from the ASF dual-hosted git repository.

zhangliang pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git


    from aa246afa10e Change javax.activation-api to compile scope (#21575)
     add 9e3bb7e6def Rename PreparedStatement to ServerPreparedStatement (#21577)

No new revisions were added by this update.

Summary of changes:
 .../proxy/backend/session/ConnectionSession.java   |  2 +-
 ...Statement.java => ServerPreparedStatement.java} | 10 ++++-----
 ...y.java => ServerPreparedStatementRegistry.java} | 24 +++++++++++-----------
 ...ServerServerPreparedStatementRegistryTest.java} |  8 ++++----
 .../mysql/command/MySQLCommandPacketFactory.java   |  7 ++++---
 .../binary/MySQLComStmtSendLongDataExecutor.java   |  2 +-
 ...ment.java => MySQLServerPreparedStatement.java} |  4 ++--
 .../binary/close/MySQLComStmtCloseExecutor.java    |  2 +-
 .../execute/MySQLComStmtExecuteExecutor.java       |  8 ++++----
 .../prepare/MySQLComStmtPrepareExecutor.java       |  4 ++--
 .../binary/reset/MySQLComStmtResetExecutor.java    |  4 ++--
 .../command/MySQLCommandPacketFactoryTest.java     | 10 ++++-----
 .../MySQLComStmtSendLongDataExecutorTest.java      |  8 ++++----
 .../close/MySQLComStmtCloseExecutorTest.java       |  2 +-
 .../execute/MySQLComStmtExecuteExecutorTest.java   | 14 ++++++-------
 .../prepare/MySQLComStmtPrepareExecutorTest.java   | 10 ++++-----
 .../reset/MySQLComStmtResetExecutorTest.java       | 10 ++++-----
 .../bind/OpenGaussComBatchBindExecutor.java        |  4 ++--
 .../bind/OpenGaussComBatchBindExecutorTest.java    |  8 ++++----
 .../command/query/extended/JDBCPortal.java         |  2 +-
 ...AggregatedBatchedStatementsCommandExecutor.java |  6 +++---
 .../PostgreSQLBatchedStatementsExecutor.java       |  4 ++--
 ...java => PostgreSQLServerPreparedStatement.java} |  4 ++--
 .../extended/bind/PostgreSQLComBindExecutor.java   |  4 ++--
 .../extended/close/PostgreSQLComCloseExecutor.java |  2 +-
 .../describe/PostgreSQLComDescribeExecutor.java    | 16 +++++++--------
 .../extended/parse/PostgreSQLComParseExecutor.java |  5 +++--
 .../command/query/extended/JDBCPortalTest.java     | 22 ++++++++++----------
 ...egatedBatchedStatementsCommandExecutorTest.java |  8 ++++----
 .../PostgreSQLBatchedStatementsExecutorTest.java   |  2 +-
 .../bind/PostgreSQLComBindExecutorTest.java        |  8 ++++----
 .../close/PostgreSQLComCloseExecutorTest.java      |  4 ++--
 .../PostgreSQLComDescribeExecutorTest.java         | 16 +++++++--------
 .../parse/PostgreSQLComParseExecutorTest.java      | 12 +++++------
 .../ReactiveMySQLComStmtExecuteExecutor.java       |  8 ++++----
 35 files changed, 133 insertions(+), 131 deletions(-)
 rename proxy/backend/src/main/java/org/apache/shardingsphere/proxy/backend/session/{PreparedStatement.java => ServerPreparedStatement.java} (82%)
 rename proxy/backend/src/main/java/org/apache/shardingsphere/proxy/backend/session/{PreparedStatementRegistry.java => ServerPreparedStatementRegistry.java} (63%)
 rename proxy/backend/src/test/java/org/apache/shardingsphere/proxy/backend/session/{PreparedStatementRegistryTest.java => ServerServerPreparedStatementRegistryTest.java} (86%)
 rename proxy/frontend/mysql/src/main/java/org/apache/shardingsphere/proxy/frontend/mysql/command/query/binary/{MySQLPreparedStatement.java => MySQLServerPreparedStatement.java} (92%)
 rename proxy/frontend/postgresql/src/main/java/org/apache/shardingsphere/proxy/frontend/postgresql/command/query/extended/{PostgreSQLPreparedStatement.java => PostgreSQLServerPreparedStatement.java} (93%)