You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by wu...@apache.org on 2021/06/05 06:30:30 UTC

[shardingsphere] branch master updated (e04665e -> 5af65e0)

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 e04665e  Code format for #10634 (#10663)
     add 5af65e0  Move sharding and encrypt rewrite test to rewrite test module (#10664)

No new revisions were added by this update.

Summary of changes:
 .../fixture/NormalEncryptAlgorithmFixture.java     |  42 --------
 .../QueryAssistedEncryptAlgorithmFixture.java      |  47 ---------
 ...che.shardingsphere.encrypt.spi.EncryptAlgorithm |  19 ----
 .../src/test/resources/logback-test.xml            |  33 -------
 .../fixture/KeyGenerateAlgorithmFixture.java       |  37 -------
 ...hardingsphere.sharding.spi.KeyGenerateAlgorithm |   1 -
 ...e.shardingsphere.sharding.spi.ShardingAlgorithm |   2 +-
 .../EncryptSQLRewriterParameterizedTest.java       |   2 +-
 .../ShardingSQLRewriterParameterizedTest.java      |   0
 .../encrypt/alter_for_query_with_plain.xml         |   0
 .../encrypt/create_for_query_with_plain.xml        |   0
 .../encrypt/delete_for_query_with_cipher.xml       |   0
 .../encrypt/delete_for_query_with_plain.xml        |   0
 .../src/test/resources/encrypt/insert.xml          |   0
 .../encrypt/select_for_query_with_cipher.xml       |   0
 .../encrypt/select_for_query_with_plain.xml        |   0
 .../encrypt/update_for_query_with_cipher.xml       |   0
 .../encrypt/update_for_query_with_plain.xml        |   0
 .../src/test/resources/sharding/alter.xml          |   0
 .../src/test/resources/sharding/analyze.xml        |   0
 .../src/test/resources/sharding/create.xml         |   0
 .../src/test/resources/sharding/delete.xml         |   0
 .../src/test/resources/sharding/drop.xml           |   0
 .../src/test/resources/sharding/index.xml          |   0
 .../src/test/resources/sharding/insert.xml         |   0
 .../src/test/resources/sharding/select.xml         |   0
 .../src/test/resources/sharding/show.xml           |   0
 .../src/test/resources/sharding/update.xml         |   0
 .../resources/yaml/encrypt/query-with-cipher.yaml  |   0
 .../resources/yaml/encrypt/query-with-plain.yaml   |   0
 .../src/test/resources/yaml/sharding-rule.yaml     | 108 ---------------------
 .../resources/yaml/sharding/sharding-rule.yaml     |   0
 32 files changed, 2 insertions(+), 289 deletions(-)
 delete mode 100644 shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-rewrite/src/test/java/org/apache/shardingsphere/encrypt/rewrite/fixture/NormalEncryptAlgorithmFixture.java
 delete mode 100644 shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-rewrite/src/test/java/org/apache/shardingsphere/encrypt/rewrite/fixture/QueryAssistedEncryptAlgorithmFixture.java
 delete mode 100644 shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-rewrite/src/test/resources/META-INF/services/org.apache.shardingsphere.encrypt.spi.EncryptAlgorithm
 delete mode 100644 shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-rewrite/src/test/resources/logback-test.xml
 delete mode 100644 shardingsphere-features/shardingsphere-sharding/shardingsphere-sharding-core/src/test/java/org/apache/shardingsphere/sharding/rewrite/fixture/KeyGenerateAlgorithmFixture.java
 rename {shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-rewrite/src/test/java/org/apache/shardingsphere/encrypt => shardingsphere-test/shardingsphere-rewrite-test/src/test/java/org/apache/shardingsphere/sharding}/rewrite/parameterized/EncryptSQLRewriterParameterizedTest.java (99%)
 rename {shardingsphere-features/shardingsphere-sharding/shardingsphere-sharding-core => shardingsphere-test/shardingsphere-rewrite-test}/src/test/java/org/apache/shardingsphere/sharding/rewrite/parameterized/ShardingSQLRewriterParameterizedTest.java (100%)
 rename {shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-rewrite => shardingsphere-test/shardingsphere-rewrite-test}/src/test/resources/encrypt/alter_for_query_with_plain.xml (100%)
 rename {shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-rewrite => shardingsphere-test/shardingsphere-rewrite-test}/src/test/resources/encrypt/create_for_query_with_plain.xml (100%)
 rename {shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-rewrite => shardingsphere-test/shardingsphere-rewrite-test}/src/test/resources/encrypt/delete_for_query_with_cipher.xml (100%)
 rename {shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-rewrite => shardingsphere-test/shardingsphere-rewrite-test}/src/test/resources/encrypt/delete_for_query_with_plain.xml (100%)
 rename {shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-rewrite => shardingsphere-test/shardingsphere-rewrite-test}/src/test/resources/encrypt/insert.xml (100%)
 rename {shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-rewrite => shardingsphere-test/shardingsphere-rewrite-test}/src/test/resources/encrypt/select_for_query_with_cipher.xml (100%)
 rename {shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-rewrite => shardingsphere-test/shardingsphere-rewrite-test}/src/test/resources/encrypt/select_for_query_with_plain.xml (100%)
 rename {shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-rewrite => shardingsphere-test/shardingsphere-rewrite-test}/src/test/resources/encrypt/update_for_query_with_cipher.xml (100%)
 rename {shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-rewrite => shardingsphere-test/shardingsphere-rewrite-test}/src/test/resources/encrypt/update_for_query_with_plain.xml (100%)
 rename {shardingsphere-features/shardingsphere-sharding/shardingsphere-sharding-core => shardingsphere-test/shardingsphere-rewrite-test}/src/test/resources/sharding/alter.xml (100%)
 rename {shardingsphere-features/shardingsphere-sharding/shardingsphere-sharding-core => shardingsphere-test/shardingsphere-rewrite-test}/src/test/resources/sharding/analyze.xml (100%)
 rename {shardingsphere-features/shardingsphere-sharding/shardingsphere-sharding-core => shardingsphere-test/shardingsphere-rewrite-test}/src/test/resources/sharding/create.xml (100%)
 rename {shardingsphere-features/shardingsphere-sharding/shardingsphere-sharding-core => shardingsphere-test/shardingsphere-rewrite-test}/src/test/resources/sharding/delete.xml (100%)
 rename {shardingsphere-features/shardingsphere-sharding/shardingsphere-sharding-core => shardingsphere-test/shardingsphere-rewrite-test}/src/test/resources/sharding/drop.xml (100%)
 rename {shardingsphere-features/shardingsphere-sharding/shardingsphere-sharding-core => shardingsphere-test/shardingsphere-rewrite-test}/src/test/resources/sharding/index.xml (100%)
 rename {shardingsphere-features/shardingsphere-sharding/shardingsphere-sharding-core => shardingsphere-test/shardingsphere-rewrite-test}/src/test/resources/sharding/insert.xml (100%)
 rename {shardingsphere-features/shardingsphere-sharding/shardingsphere-sharding-core => shardingsphere-test/shardingsphere-rewrite-test}/src/test/resources/sharding/select.xml (100%)
 rename {shardingsphere-features/shardingsphere-sharding/shardingsphere-sharding-core => shardingsphere-test/shardingsphere-rewrite-test}/src/test/resources/sharding/show.xml (100%)
 rename {shardingsphere-features/shardingsphere-sharding/shardingsphere-sharding-core => shardingsphere-test/shardingsphere-rewrite-test}/src/test/resources/sharding/update.xml (100%)
 rename {shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-rewrite => shardingsphere-test/shardingsphere-rewrite-test}/src/test/resources/yaml/encrypt/query-with-cipher.yaml (100%)
 rename {shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-rewrite => shardingsphere-test/shardingsphere-rewrite-test}/src/test/resources/yaml/encrypt/query-with-plain.yaml (100%)
 delete mode 100644 shardingsphere-test/shardingsphere-rewrite-test/src/test/resources/yaml/sharding-rule.yaml
 rename {shardingsphere-features/shardingsphere-sharding/shardingsphere-sharding-core => shardingsphere-test/shardingsphere-rewrite-test}/src/test/resources/yaml/sharding/sharding-rule.yaml (100%)