This is an automated email from the ASF dual-hosted git repository.
wuweijie pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git.
from fecce7b Add scaling distSQL paramterized test (#11231)
add e91d43e Refactor PostgreSQLBinaryStatementRegistry (#11261)
No new revisions were added by this update.
Summary of changes:
.../core/jdbc/repository/UserRepositoryImpl.java | 2 +-
shardingsphere-db-protocol/pom.xml | 8 ++
.../query/binary/MySQLBinaryStatementRegistry.java | 7 +-
.../binary/close/MySQLComStmtClosePacket.java | 2 +-
.../binary/MySQLBinaryStatementRegistryTest.java | 4 +-
.../command/PostgreSQLCommandPacketFactory.java | 4 +-
.../command/query/PostgreSQLColumnDescription.java | 2 +-
.../query/binary}/PostgreSQLBinaryColumnType.java | 2 +-
.../query/binary}/PostgreSQLBinaryStatement.java | 3 +-
.../binary/PostgreSQLBinaryStatementRegistry.java | 95 ++++++++++++++++++++++
.../query/binary/bind/PostgreSQLComBindPacket.java | 23 ++----
.../PostgreSQLBinaryProtocolValueFactory.java | 2 +-
.../binary/parse/PostgreSQLComParsePacket.java | 2 +-
.../constant/PostgreSQLBinaryColumnTypeTest.java | 1 +
.../PostgreSQLCommandPacketFactoryTest.java | 12 +++
.../PostgreSQLBinaryStatementRegistryTest.java | 63 ++++++++++++++
.../binary/bind/PostgreSQLComBindPacketTest.java | 15 ++--
.../PostgreSQLBinaryProtocolValueFactoryTest.java | 2 +-
.../binary/parse/PostgreSQLComParsePacketTest.java | 2 +-
.../query/text/PostgreSQLDataRowPacketTest.java | 2 +-
.../command/PostgreSQLConnectionContext.java | 18 +---
.../command/query/binary/PostgreSQLPortal.java | 4 +-
.../binary/bind/PostgreSQLComBindExecutor.java | 6 +-
.../binary/close/PostgreSQLComCloseExecutor.java | 3 +-
.../binary/parse/PostgreSQLComParseExecutor.java | 4 +-
.../PostgreSQLCommandExecutorFactoryTest.java | 12 ++-
.../binary/bind/PostgreSQLComBindExecutorTest.java | 10 +--
.../close/PostgreSQLComCloseExecutorTest.java | 9 +-
.../parse/PostgreSQLComParseExecutorTest.java | 3 -
29 files changed, 244 insertions(+), 78 deletions(-)
rename
shardingsphere-db-protocol/shardingsphere-db-protocol-postgresql/src/main/java/org/apache/shardingsphere/db/protocol/postgresql/{constant
=> packet/command/query/binary}/PostgreSQLBinaryColumnType.java (98%)
rename
{shardingsphere-proxy/shardingsphere-proxy-frontend/shardingsphere-proxy-frontend-postgresql/src/main/java/org/apache/shardingsphere/proxy/frontend/postgresql/command
=>
shardingsphere-db-protocol/shardingsphere-db-protocol-postgresql/src/main/java/org/apache/shardingsphere/db/protocol/postgresql/packet/command/query/binary}/PostgreSQLBinaryStatement.java
(88%)
create mode 100644
shardingsphere-db-protocol/shardingsphere-db-protocol-postgresql/src/main/java/org/apache/shardingsphere/db/protocol/postgresql/packet/command/query/binary/PostgreSQLBinaryStatementRegistry.java
create mode 100644
shardingsphere-db-protocol/shardingsphere-db-protocol-postgresql/src/test/java/org/apache/shardingsphere/db/protocol/postgresql/packet/command/query/binary/PostgreSQLBinaryStatementRegistryTest.java