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

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


The following commit(s) were added to refs/heads/master by this push:
     new 4ba670f  Refactor examples (#9481)
4ba670f is described below

commit 4ba670f908e0abe7a90e742f3115482969303db9
Author: Haoran Meng <[email protected]>
AuthorDate: Wed Feb 24 11:34:01 2021 +0800

    Refactor examples (#9481)
---
 .../resources/META-INF/nacos/local/encrypt.yaml    |  9 ++--
 .../META-INF/nacos/local/replica-query.yaml        | 27 +++++------
 .../resources/META-INF/nacos/local/shadow.yaml     | 18 ++++----
 .../nacos/local/sharding-databases-tables.yaml     | 18 ++++----
 .../META-INF/zookeeper/local/encrypt.yaml          |  9 ++--
 .../META-INF/zookeeper/local/replica-query.yaml    | 27 +++++------
 .../resources/META-INF/zookeeper/local/shadow.yaml | 18 ++++----
 .../zookeeper/local/sharding-databases-tables.yaml | 18 ++++----
 .../main/resources/META-INF/encrypt-databases.yaml |  9 ++--
 .../resources/META-INF/hint-databases-only.yaml    | 18 ++++----
 .../resources/META-INF/hint-databases-tables.yaml  | 18 ++++----
 .../main/resources/META-INF/hint-primary-only.yaml | 27 +++++------
 .../META-INF/encrypt-shadow-databases.yaml         | 18 ++++----
 .../META-INF/replica-query-shadow-databases.yaml   | 36 +++++++--------
 .../main/resources/META-INF/shadow-databases.yaml  | 18 ++++----
 .../META-INF/sharding-shadow-databases.yaml        | 36 +++++++--------
 .../src/main/resources/META-INF/replica-query.yaml | 27 +++++------
 .../META-INF/sharding-databases-range.yaml         | 18 ++++----
 .../META-INF/sharding-databases-tables-range.yaml  | 18 ++++----
 .../META-INF/sharding-databases-tables.yaml        | 18 ++++----
 .../resources/META-INF/sharding-databases.yaml     | 18 ++++----
 .../META-INF/sharding-replica-query-range.yaml     | 54 ++++++++++------------
 .../resources/META-INF/sharding-replica-query.yaml | 54 ++++++++++------------
 .../resources/META-INF/sharding-tables-range.yaml  |  9 ++--
 .../main/resources/META-INF/sharding-tables.yaml   |  9 ++--
 .../META-INF/sharding-databases-tables.yaml        | 22 ++++-----
 .../META-INF/sharding-databases-tables.yaml        | 22 ++++-----
 .../sharding-databases-tables-postgresql.yaml      | 14 +++---
 .../META-INF/sharding-databases-tables.yaml        | 22 ++++-----
 .../sharding-databases-tables-postgresql.yaml      | 14 +++---
 .../META-INF/sharding-databases-tables.yaml        | 22 ++++-----
 .../META-INF/sharding-databases-tables.yaml        | 18 ++++----
 32 files changed, 304 insertions(+), 379 deletions(-)

diff --git 
a/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/nacos/local/encrypt.yaml
 
b/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/nacos/local/encrypt.yaml
index e3673dc..5d9cb18 100644
--- 
a/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/nacos/local/encrypt.yaml
+++ 
b/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/nacos/local/encrypt.yaml
@@ -18,11 +18,10 @@
 dataSources:
   unique_ds:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: jdbc:mysql://localhost:3306/demo_ds
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: jdbc:mysql://localhost:3306/demo_ds
+    username: root
+    password:
 
 rules:
 - !ENCRYPT
diff --git 
a/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/nacos/local/replica-query.yaml
 
b/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/nacos/local/replica-query.yaml
index 87459b6..e00e5a7 100644
--- 
a/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/nacos/local/replica-query.yaml
+++ 
b/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/nacos/local/replica-query.yaml
@@ -18,25 +18,22 @@
 dataSources:
   primary_ds:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: jdbc:mysql://localhost:3306/demo_primary_ds
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: jdbc:mysql://localhost:3306/demo_primary_ds
+    username: root
+    password:
   replica_ds_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: jdbc:mysql://localhost:3306/demo_replica_ds_0
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: jdbc:mysql://localhost:3306/demo_replica_ds_0
+    username: root
+    password:
   replica_ds_1:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: jdbc:mysql://localhost:3306/demo_replica_ds_1
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: jdbc:mysql://localhost:3306/demo_replica_ds_1
+    username: root
+    password:
 
 rules:
 - !REPLICA_QUERY
diff --git 
a/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/nacos/local/shadow.yaml
 
b/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/nacos/local/shadow.yaml
index 6224a17..24dd726 100644
--- 
a/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/nacos/local/shadow.yaml
+++ 
b/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/nacos/local/shadow.yaml
@@ -31,18 +31,16 @@ governance:
 dataSources:
   ds:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: jdbc:mysql://localhost:3306/demo_ds
-      username: root
-      password: root
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: jdbc:mysql://localhost:3306/demo_ds
+    username: root
+    password: root
   ds_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: jdbc:mysql://localhost:3306/shadow_demo_ds
-      username: root
-      password: root
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: jdbc:mysql://localhost:3306/shadow_demo_ds
+    username: root
+    password: root
 
 rules:
 - !SHADOW
diff --git 
a/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/nacos/local/sharding-databases-tables.yaml
 
b/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/nacos/local/sharding-databases-tables.yaml
index 9d5a41b..54d21a6 100644
--- 
a/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/nacos/local/sharding-databases-tables.yaml
+++ 
b/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/nacos/local/sharding-databases-tables.yaml
@@ -18,18 +18,16 @@
 dataSources:
   ds_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_0?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_0?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
+    username: root
+    password:
   ds_1:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_1?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_1?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
+    username: root
+    password:
 
 rules:
 - !SHARDING
diff --git 
a/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/zookeeper/local/encrypt.yaml
 
b/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/zookeeper/local/encrypt.yaml
index ec7ff6d..474379b 100644
--- 
a/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/zookeeper/local/encrypt.yaml
+++ 
b/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/zookeeper/local/encrypt.yaml
@@ -25,11 +25,10 @@ governance:
 dataSources:
   uinque_ds:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: jdbc:mysql://localhost:3306/demo_ds
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: jdbc:mysql://localhost:3306/demo_ds
+    username: root
+    password:
 
 rules:
 - !ENCRYPT
diff --git 
a/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/zookeeper/local/replica-query.yaml
 
b/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/zookeeper/local/replica-query.yaml
index 7073a55..f0b84b5 100644
--- 
a/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/zookeeper/local/replica-query.yaml
+++ 
b/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/zookeeper/local/replica-query.yaml
@@ -25,25 +25,22 @@ governance:
 dataSources:
   primary_ds:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: jdbc:mysql://localhost:3306/demo_primary_ds
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: jdbc:mysql://localhost:3306/demo_primary_ds
+    username: root
+    password:
   replica_ds_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: jdbc:mysql://localhost:3306/demo_replica_ds_0
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: jdbc:mysql://localhost:3306/demo_replica_ds_0
+    username: root
+    password:
   replica_ds_1:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: jdbc:mysql://localhost:3306/demo_replica_ds_1
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: jdbc:mysql://localhost:3306/demo_replica_ds_1
+    username: root
+    password:
 
 rules:
 - !REPLICA_QUERY
diff --git 
a/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/zookeeper/local/shadow.yaml
 
b/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/zookeeper/local/shadow.yaml
index 988fec8..8b6152f 100644
--- 
a/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/zookeeper/local/shadow.yaml
+++ 
b/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/zookeeper/local/shadow.yaml
@@ -25,18 +25,16 @@ governance:
 dataSources:
   ds:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: jdbc:mysql://localhost:3306/demo_ds
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: jdbc:mysql://localhost:3306/demo_ds
+    username: root
+    password:
   ds_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: jdbc:mysql://localhost:3306/shadow_demo_ds
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: jdbc:mysql://localhost:3306/shadow_demo_ds
+    username: root
+    password:
 
 rules:
   - !SHADOW
diff --git 
a/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/zookeeper/local/sharding-databases-tables.yaml
 
b/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/zookeeper/local/sharding-databases-tables.yaml
index b6508b1..ede9aa4 100644
--- 
a/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/zookeeper/local/sharding-databases-tables.yaml
+++ 
b/examples/shardingsphere-jdbc-example/governance-example/governance-raw-jdbc-example/src/main/resources/META-INF/zookeeper/local/sharding-databases-tables.yaml
@@ -25,18 +25,16 @@ governance:
 dataSources:
   ds_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: jdbc:mysql://localhost:3306/demo_ds_0
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: jdbc:mysql://localhost:3306/demo_ds_0
+    username: root
+    password:
   ds_1:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: jdbc:mysql://localhost:3306/demo_ds_1
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: jdbc:mysql://localhost:3306/demo_ds_1
+    username: root
+    password:
 
 rules:
 - !SHARDING
diff --git 
a/examples/shardingsphere-jdbc-example/other-feature-example/encrypt-example/encrypt-raw-jdbc-example/src/main/resources/META-INF/encrypt-databases.yaml
 
b/examples/shardingsphere-jdbc-example/other-feature-example/encrypt-example/encrypt-raw-jdbc-example/src/main/resources/META-INF/encrypt-databases.yaml
index 761c171..197f255 100644
--- 
a/examples/shardingsphere-jdbc-example/other-feature-example/encrypt-example/encrypt-raw-jdbc-example/src/main/resources/META-INF/encrypt-databases.yaml
+++ 
b/examples/shardingsphere-jdbc-example/other-feature-example/encrypt-example/encrypt-raw-jdbc-example/src/main/resources/META-INF/encrypt-databases.yaml
@@ -18,11 +18,10 @@
 dataSources:
   unique_ds:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
 
 rules:
 - !ENCRYPT
diff --git 
a/examples/shardingsphere-jdbc-example/other-feature-example/hint-example/hint-raw-jdbc-example/src/main/resources/META-INF/hint-databases-only.yaml
 
b/examples/shardingsphere-jdbc-example/other-feature-example/hint-example/hint-raw-jdbc-example/src/main/resources/META-INF/hint-databases-only.yaml
index 7b9ade6..f122914 100644
--- 
a/examples/shardingsphere-jdbc-example/other-feature-example/hint-example/hint-raw-jdbc-example/src/main/resources/META-INF/hint-databases-only.yaml
+++ 
b/examples/shardingsphere-jdbc-example/other-feature-example/hint-example/hint-raw-jdbc-example/src/main/resources/META-INF/hint-databases-only.yaml
@@ -18,18 +18,16 @@
 dataSources:
   ds_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: jdbc:mysql://localhost:3306/demo_ds_0
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: jdbc:mysql://localhost:3306/demo_ds_0
+    username: root
+    password:
   ds_1:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: jdbc:mysql://localhost:3306/demo_ds_1
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: jdbc:mysql://localhost:3306/demo_ds_1
+    username: root
+    password:
 
 rules:
 - !SHARDING
diff --git 
a/examples/shardingsphere-jdbc-example/other-feature-example/hint-example/hint-raw-jdbc-example/src/main/resources/META-INF/hint-databases-tables.yaml
 
b/examples/shardingsphere-jdbc-example/other-feature-example/hint-example/hint-raw-jdbc-example/src/main/resources/META-INF/hint-databases-tables.yaml
index 933887c..4fb102e 100644
--- 
a/examples/shardingsphere-jdbc-example/other-feature-example/hint-example/hint-raw-jdbc-example/src/main/resources/META-INF/hint-databases-tables.yaml
+++ 
b/examples/shardingsphere-jdbc-example/other-feature-example/hint-example/hint-raw-jdbc-example/src/main/resources/META-INF/hint-databases-tables.yaml
@@ -18,18 +18,16 @@
 dataSources:
   ds_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: jdbc:mysql://localhost:3306/demo_ds_0
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: jdbc:mysql://localhost:3306/demo_ds_0
+    username: root
+    password:
   ds_1:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: jdbc:mysql://localhost:3306/demo_ds_1
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: jdbc:mysql://localhost:3306/demo_ds_1
+    username: root
+    password:
 
 rules:
 - !SHARDING
diff --git 
a/examples/shardingsphere-jdbc-example/other-feature-example/hint-example/hint-raw-jdbc-example/src/main/resources/META-INF/hint-primary-only.yaml
 
b/examples/shardingsphere-jdbc-example/other-feature-example/hint-example/hint-raw-jdbc-example/src/main/resources/META-INF/hint-primary-only.yaml
index 774a574..4acef5c 100644
--- 
a/examples/shardingsphere-jdbc-example/other-feature-example/hint-example/hint-raw-jdbc-example/src/main/resources/META-INF/hint-primary-only.yaml
+++ 
b/examples/shardingsphere-jdbc-example/other-feature-example/hint-example/hint-raw-jdbc-example/src/main/resources/META-INF/hint-primary-only.yaml
@@ -18,25 +18,22 @@
 dataSources:
   primary_ds:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: jdbc:mysql://localhost:3306/demo_primary_ds
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: jdbc:mysql://localhost:3306/demo_primary_ds
+    username: root
+    password:
   replica_ds_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: jdbc:mysql://localhost:3306/demo_replica_ds_0
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: jdbc:mysql://localhost:3306/demo_replica_ds_0
+    username: root
+    password:
   replica_ds_1:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: jdbc:mysql://localhost:3306/demo_replica_ds_1
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: jdbc:mysql://localhost:3306/demo_replica_ds_1
+    username: root
+    password:
 
 rules:
 - !REPLICA_QUERY
diff --git 
a/examples/shardingsphere-jdbc-example/other-feature-example/shadow-example/shadow-raw-jdbc-example/src/main/resources/META-INF/encrypt-shadow-databases.yaml
 
b/examples/shardingsphere-jdbc-example/other-feature-example/shadow-example/shadow-raw-jdbc-example/src/main/resources/META-INF/encrypt-shadow-databases.yaml
index 4d54c65..0d8233f 100644
--- 
a/examples/shardingsphere-jdbc-example/other-feature-example/shadow-example/shadow-raw-jdbc-example/src/main/resources/META-INF/encrypt-shadow-databases.yaml
+++ 
b/examples/shardingsphere-jdbc-example/other-feature-example/shadow-example/shadow-raw-jdbc-example/src/main/resources/META-INF/encrypt-shadow-databases.yaml
@@ -18,18 +18,16 @@
 dataSources:
   ds:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
   ds_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/shadow_demo_ds?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/shadow_demo_ds?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
 
 rules:
 - !SHADOW
diff --git 
a/examples/shardingsphere-jdbc-example/other-feature-example/shadow-example/shadow-raw-jdbc-example/src/main/resources/META-INF/replica-query-shadow-databases.yaml
 
b/examples/shardingsphere-jdbc-example/other-feature-example/shadow-example/shadow-raw-jdbc-example/src/main/resources/META-INF/replica-query-shadow-databases.yaml
index a1f36fb..1f0728b 100644
--- 
a/examples/shardingsphere-jdbc-example/other-feature-example/shadow-example/shadow-raw-jdbc-example/src/main/resources/META-INF/replica-query-shadow-databases.yaml
+++ 
b/examples/shardingsphere-jdbc-example/other-feature-example/shadow-example/shadow-raw-jdbc-example/src/main/resources/META-INF/replica-query-shadow-databases.yaml
@@ -18,32 +18,28 @@
 dataSources:
   primary_ds:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_primary_ds?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_primary_ds?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
   replica_ds:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_replica_ds?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_replica_ds?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
   shadow_primary_ds:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_shadow_primary_ds?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_shadow_primary_ds?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
   shadow_replica_ds:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_shadow_replica_ds?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_shadow_replica_ds?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
 
 rules:
 - !SHADOW
diff --git 
a/examples/shardingsphere-jdbc-example/other-feature-example/shadow-example/shadow-raw-jdbc-example/src/main/resources/META-INF/shadow-databases.yaml
 
b/examples/shardingsphere-jdbc-example/other-feature-example/shadow-example/shadow-raw-jdbc-example/src/main/resources/META-INF/shadow-databases.yaml
index fb1ac04..e326f9a 100644
--- 
a/examples/shardingsphere-jdbc-example/other-feature-example/shadow-example/shadow-raw-jdbc-example/src/main/resources/META-INF/shadow-databases.yaml
+++ 
b/examples/shardingsphere-jdbc-example/other-feature-example/shadow-example/shadow-raw-jdbc-example/src/main/resources/META-INF/shadow-databases.yaml
@@ -18,18 +18,16 @@
 dataSources:
   ds:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
   ds_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/shadow_demo_ds?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/shadow_demo_ds?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
 
 rules:
 - !SHADOW
diff --git 
a/examples/shardingsphere-jdbc-example/other-feature-example/shadow-example/shadow-raw-jdbc-example/src/main/resources/META-INF/sharding-shadow-databases.yaml
 
b/examples/shardingsphere-jdbc-example/other-feature-example/shadow-example/shadow-raw-jdbc-example/src/main/resources/META-INF/sharding-shadow-databases.yaml
index 9b1d66a..c11e09e 100644
--- 
a/examples/shardingsphere-jdbc-example/other-feature-example/shadow-example/shadow-raw-jdbc-example/src/main/resources/META-INF/sharding-shadow-databases.yaml
+++ 
b/examples/shardingsphere-jdbc-example/other-feature-example/shadow-example/shadow-raw-jdbc-example/src/main/resources/META-INF/sharding-shadow-databases.yaml
@@ -18,32 +18,28 @@
 dataSources:
   ds_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
   ds_1:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
   shadow_ds_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/shadow_demo_ds_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/shadow_demo_ds_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
   shadow_ds_1:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/shadow_demo_ds_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/shadow_demo_ds_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
 
 rules:
 - !SHADOW
diff --git 
a/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/replica-query.yaml
 
b/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/replica-query.yaml
index de25c8b..9d1e090 100644
--- 
a/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/replica-query.yaml
+++ 
b/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/replica-query.yaml
@@ -18,25 +18,22 @@
 dataSources:
   primary_ds:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_primary_ds?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_primary_ds?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
   replica_ds_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_replica_ds_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_replica_ds_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
   replica_ds_1:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_replica_ds_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_replica_ds_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
 
 rules:
 - !REPLICA_QUERY
diff --git 
a/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-range.yaml
 
b/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-range.yaml
index 6ae0481..3abd42b 100644
--- 
a/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-range.yaml
+++ 
b/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-range.yaml
@@ -18,18 +18,16 @@
 dataSources:
   ds_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
   ds_1:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
 
 rules:
 - !SHARDING
diff --git 
a/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables-range.yaml
 
b/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables-range.yaml
index 819a21e..56b4143 100644
--- 
a/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables-range.yaml
+++ 
b/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables-range.yaml
@@ -18,18 +18,16 @@
 dataSources:
   ds_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
   ds_1:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
 
 rules:
 - !SHARDING
diff --git 
a/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables.yaml
 
b/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables.yaml
index 0d597d0..15d95c0 100644
--- 
a/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables.yaml
+++ 
b/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables.yaml
@@ -18,18 +18,16 @@
 dataSources:
   ds_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
   ds_1:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
 
 rules:
 - !SHARDING
diff --git 
a/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-databases.yaml
 
b/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-databases.yaml
index 78cc398..138b76e 100644
--- 
a/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-databases.yaml
+++ 
b/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-databases.yaml
@@ -18,18 +18,16 @@
 dataSources:
   ds_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
   ds_1:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
 
 rules:
 - !SHARDING
diff --git 
a/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-replica-query-range.yaml
 
b/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-replica-query-range.yaml
index 9c812d5..7826c66 100644
--- 
a/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-replica-query-range.yaml
+++ 
b/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-replica-query-range.yaml
@@ -18,46 +18,40 @@
 dataSources:
   primary_ds_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_primary_ds_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_primary_ds_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
   primary_ds_0_replica_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_primary_ds_0_replica_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_primary_ds_0_replica_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
   primary_ds_0_replica_1:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_primary_ds_0_replica_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_primary_ds_0_replica_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
   primary_ds_1:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_primary_ds_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_primary_ds_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
   primary_ds_1_replica_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_primary_ds_1_replica_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_primary_ds_1_replica_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
   primary_ds_1_replica_1:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_primary_ds_1_replica_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_primary_ds_1_replica_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
     
 rules:
 - !SHARDING
diff --git 
a/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-replica-query.yaml
 
b/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-replica-query.yaml
index 1f8e130..0a17e33 100644
--- 
a/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-replica-query.yaml
+++ 
b/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-replica-query.yaml
@@ -18,46 +18,40 @@
 dataSources:
   primary_ds_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_primary_ds_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_primary_ds_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
   primary_ds_0_replica_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_primary_ds_0_replica_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_primary_ds_0_replica_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
   primary_ds_0_replica_1:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_primary_ds_0_replica_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_primary_ds_0_replica_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
   primary_ds_1:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_primary_ds_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_primary_ds_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
   primary_ds_1_replica_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_primary_ds_1_replica_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_primary_ds_1_replica_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
   primary_ds_1_replica_1:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_primary_ds_1_replica_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_primary_ds_1_replica_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
     
 rules:
 - !SHARDING
diff --git 
a/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-tables-range.yaml
 
b/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-tables-range.yaml
index 9c77e7b..df9c7c4 100644
--- 
a/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-tables-range.yaml
+++ 
b/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-tables-range.yaml
@@ -18,11 +18,10 @@
 dataSources:
   ds:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
 
 rules:
 - !SHARDING
diff --git 
a/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-tables.yaml
 
b/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-tables.yaml
index 34270d0..e76afe9 100644
--- 
a/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-tables.yaml
+++ 
b/examples/shardingsphere-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-tables.yaml
@@ -18,11 +18,10 @@
 dataSources:
   ds:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
 
 rules:
 - !SHARDING
diff --git 
a/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-bitronix-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables.yaml
 
b/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-bitronix-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables.yaml
index 5779159..43c4e38 100644
--- 
a/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-bitronix-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables.yaml
+++ 
b/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-bitronix-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables.yaml
@@ -18,20 +18,18 @@
 dataSources:
   ds_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
-      autoCommit: false
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
+    autoCommit: false
   ds_1:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
-      autoCommit: false
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
+    autoCommit: false
 
 rules:
 - !SHARDING
diff --git 
a/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-narayana-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables.yaml
 
b/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-narayana-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables.yaml
index c56b08d..4f7f32e 100644
--- 
a/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-narayana-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables.yaml
+++ 
b/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-narayana-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables.yaml
@@ -18,20 +18,18 @@
 dataSources:
   ds_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
-      autoCommit: false
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
+    autoCommit: false
   ds_1:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
-      autoCommit: false
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
+    autoCommit: false
 
 rules:
 - !SHARDING
diff --git 
a/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables-postgresql.yaml
 
b/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables-postgresql.yaml
index a12bc92..dc8237f 100644
--- 
a/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables-postgresql.yaml
+++ 
b/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables-postgresql.yaml
@@ -18,16 +18,14 @@
 dataSources:
   ds_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      jdbcUrl: jdbc:postgresql://localhost:5432/demo_ds_0
-      username: postgres
-      password: postgres
+    jdbcUrl: jdbc:postgresql://localhost:5432/demo_ds_0
+    username: postgres
+    password: postgres
   ds_1:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      jdbcUrl: jdbc:postgresql://localhost:5432/demo_ds_1
-      username: postgres
-      password: postgres
+    jdbcUrl: jdbc:postgresql://localhost:5432/demo_ds_1
+    username: postgres
+    password: postgres
 
 rules:
 - !SHARDING
diff --git 
a/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables.yaml
 
b/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables.yaml
index bda80a7..fdf2a7c 100644
--- 
a/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables.yaml
+++ 
b/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables.yaml
@@ -18,20 +18,18 @@
 dataSources:
   ds_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
-      autoCommit: false
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
+    autoCommit: false
   ds_1:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
-      autoCommit: false
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
+    autoCommit: false
 
 rules:
 - !SHARDING
diff --git 
a/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-raw-jdbc-example/src/test/resources/META-INF/sharding-databases-tables-postgresql.yaml
 
b/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-raw-jdbc-example/src/test/resources/META-INF/sharding-databases-tables-postgresql.yaml
index def282f..9f12fc5 100644
--- 
a/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-raw-jdbc-example/src/test/resources/META-INF/sharding-databases-tables-postgresql.yaml
+++ 
b/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-raw-jdbc-example/src/test/resources/META-INF/sharding-databases-tables-postgresql.yaml
@@ -18,16 +18,14 @@
 dataSources:
   ds_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      jdbcUrl: 
jdbc:h2:mem:demo_ds_0;DB_CLOSE_DELAY=-1;DATABASE_TO_UPPER=false;MODE=PostgreSQL
-      username: "sa"
-      password: ""
+    jdbcUrl: 
jdbc:h2:mem:demo_ds_0;DB_CLOSE_DELAY=-1;DATABASE_TO_UPPER=false;MODE=PostgreSQL
+    username: "sa"
+    password: ""
   ds_1:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      jdbcUrl: 
jdbc:h2:mem:demo_ds_1;DB_CLOSE_DELAY=-1;DATABASE_TO_UPPER=false;MODE=PostgreSQL
-      username: "sa"
-      password: ""
+    jdbcUrl: 
jdbc:h2:mem:demo_ds_1;DB_CLOSE_DELAY=-1;DATABASE_TO_UPPER=false;MODE=PostgreSQL
+    username: "sa"
+    password: ""
 
 rules:
 - !SHARDING
diff --git 
a/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-raw-jdbc-example/src/test/resources/META-INF/sharding-databases-tables.yaml
 
b/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-raw-jdbc-example/src/test/resources/META-INF/sharding-databases-tables.yaml
index c673d5f..94bba72 100644
--- 
a/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-raw-jdbc-example/src/test/resources/META-INF/sharding-databases-tables.yaml
+++ 
b/examples/shardingsphere-jdbc-example/transaction-example/transaction-2pc-xa-raw-jdbc-example/src/test/resources/META-INF/sharding-databases-tables.yaml
@@ -18,20 +18,18 @@
 dataSources:
   ds_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: org.h2.Driver
-      jdbcUrl: 
jdbc:h2:mem:demo_ds_0;DB_CLOSE_DELAY=-1;DATABASE_TO_UPPER=false;MODE=MYSQL
-      username: "sa"
-      password: ""
-      autoCommit: false
+    driverClassName: org.h2.Driver
+    jdbcUrl: 
jdbc:h2:mem:demo_ds_0;DB_CLOSE_DELAY=-1;DATABASE_TO_UPPER=false;MODE=MYSQL
+    username: "sa"
+    password: ""
+    autoCommit: false
   ds_1:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: org.h2.Driver
-      jdbcUrl: 
jdbc:h2:mem:demo_ds_1;DB_CLOSE_DELAY=-1;DATABASE_TO_UPPER=false;MODE=MYSQL
-      username: "sa"
-      password: ""
-      autoCommit: false
+    driverClassName: org.h2.Driver
+    jdbcUrl: 
jdbc:h2:mem:demo_ds_1;DB_CLOSE_DELAY=-1;DATABASE_TO_UPPER=false;MODE=MYSQL
+    username: "sa"
+    password: ""
+    autoCommit: false
 
 rules:
 - !SHARDING
diff --git 
a/examples/shardingsphere-jdbc-example/transaction-example/transaction-base-seata-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables.yaml
 
b/examples/shardingsphere-jdbc-example/transaction-example/transaction-base-seata-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables.yaml
index 350a407..391428f 100644
--- 
a/examples/shardingsphere-jdbc-example/transaction-example/transaction-base-seata-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables.yaml
+++ 
b/examples/shardingsphere-jdbc-example/transaction-example/transaction-base-seata-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables.yaml
@@ -18,18 +18,16 @@
 dataSources:
   ds_0:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_0?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
   ds_1:
     dataSourceClassName: com.zaxxer.hikari.HikariDataSource
-    props:
-      driverClassName: com.mysql.jdbc.Driver
-      jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
-      username: root
-      password:
+    driverClassName: com.mysql.jdbc.Driver
+    jdbcUrl: 
jdbc:mysql://localhost:3306/demo_ds_1?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
+    username: root
+    password:
 
 rules:
 - !SHARDING

Reply via email to