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 2022/01/19 12:01:32 UTC

[shardingsphere] branch master updated (dbb6406 -> c50d697)

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 dbb6406  Add overwrite judgment for persistence of proxy labels (#14901)
     add c50d697  Decoupling JDBC from PostgreSQLPortal (#14903)

No new revisions were added by this update.

Summary of changes:
 .../pom.xml                                        |   2 +-
 .../command/PostgreSQLConnectionContext.java       |  66 ++----
 .../{PostgreSQLPortal.java => JDBCPortal.java}     |  99 +++++----
 .../postgresql/command/query/extended/Portal.java  |  49 ++---
 .../extended/bind/PostgreSQLComBindExecutor.java   |   5 +-
 .../execute/PostgreSQLComExecuteExecutor.java      |  64 +-----
 .../command/PostgreSQLConnectionContextTest.java   | 105 ++++-----
 .../command/query/extended/JDBCPortalTest.java     | 237 +++++++++++++++++++++
 .../query/extended/PostgreSQLPortalTest.java       | 227 --------------------
 .../bind/PostgreSQLComBindExecutorTest.java        |  27 +--
 .../PostgreSQLComDescribeExecutorTest.java         |   4 +-
 .../execute/PostgreSQLComExecuteExecutorTest.java  | 105 +++------
 12 files changed, 425 insertions(+), 565 deletions(-)
 rename shardingsphere-proxy/shardingsphere-proxy-frontend/shardingsphere-proxy-frontend-postgresql/src/main/java/org/apache/shardingsphere/proxy/frontend/postgresql/command/query/extended/{PostgreSQLPortal.java => JDBCPortal.java} (76%)
 copy shardingsphere-mode/shardingsphere-mode-core/src/main/java/org/apache/shardingsphere/mode/persist/PersistRepository.java => shardingsphere-proxy/shardingsphere-proxy-frontend/shardingsphere-proxy-frontend-postgresql/src/main/java/org/apache/shardingsphere/proxy/frontend/postgresql/command/query/extended/Portal.java (54%)
 create mode 100644 shardingsphere-proxy/shardingsphere-proxy-frontend/shardingsphere-proxy-frontend-postgresql/src/test/java/org/apache/shardingsphere/proxy/frontend/postgresql/command/query/extended/JDBCPortalTest.java
 delete mode 100644 shardingsphere-proxy/shardingsphere-proxy-frontend/shardingsphere-proxy-frontend-postgresql/src/test/java/org/apache/shardingsphere/proxy/frontend/postgresql/command/query/extended/PostgreSQLPortalTest.java