You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by pa...@apache.org on 2021/10/19 09:36:21 UTC

[shardingsphere] branch master updated (b909425 -> a8bf793)

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 b909425  fix show table status (#13129)
     add a8bf793  Refactor PostgreSQL Portal (#13101)

No new revisions were added by this update.

Summary of changes:
 .../describe/PostgreSQLComDescribePacket.java      |  10 +-
 .../describe/PostgreSQLComDescribePacketTest.java  |  15 +-
 .../command/OpenGaussCommandExecutorFactory.java   |   2 +-
 .../binary/bind/OpenGaussComBatchBindExecutor.java |  34 +--
 .../pom.xml                                        |   1 +
 .../command/PostgreSQLCommandExecutorFactory.java  |   3 +-
 .../command/PostgreSQLConnectionContext.java       |  19 +-
 .../command/query/binary/PostgreSQLPortal.java     |  54 ++++-
 .../binary/bind/PostgreSQLComBindExecutor.java     |  37 +---
 .../describe/PostgreSQLComDescribeExecutor.java    |  17 +-
 .../execute/PostgreSQLComExecuteExecutor.java      |   4 +-
 .../query/text/PostgreSQLComQueryExecutor.java     |   2 +-
 .../command/PostgreSQLConnectionContextTest.java   | 116 +++++++++++
 .../command/query/binary/PostgreSQLPortalTest.java | 227 +++++++++++++++++++++
 .../PostgreSQLComDescribeExecutorTest.java         |  37 ++--
 15 files changed, 467 insertions(+), 111 deletions(-)
 create mode 100644 shardingsphere-proxy/shardingsphere-proxy-frontend/shardingsphere-proxy-frontend-postgresql/src/test/java/org/apache/shardingsphere/proxy/frontend/postgresql/command/PostgreSQLConnectionContextTest.java
 create mode 100644 shardingsphere-proxy/shardingsphere-proxy-frontend/shardingsphere-proxy-frontend-postgresql/src/test/java/org/apache/shardingsphere/proxy/frontend/postgresql/command/query/binary/PostgreSQLPortalTest.java