You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by GitBox <gi...@apache.org> on 2020/03/26 12:52:18 UTC

[GitHub] [incubator-shardingsphere] dongzl opened a new pull request #4964: Fixes insensitive for DESC table for encrypt.

dongzl opened a new pull request #4964: Fixes insensitive for DESC table for encrypt.
URL: https://github.com/apache/incubator-shardingsphere/pull/4964
 
 
   Fixes #4770 .
   
   Changes proposed in this pull request:
   - Get column encrypt field from SchemaMetaData instead of EncryptRule.
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [incubator-shardingsphere] dongzl commented on a change in pull request #4964: Fixes insensitive for DESC table for encrypt.

Posted by GitBox <gi...@apache.org>.
dongzl commented on a change in pull request #4964: Fixes insensitive for DESC table for encrypt.
URL: https://github.com/apache/incubator-shardingsphere/pull/4964#discussion_r399225027
 
 

 ##########
 File path: encrypt-core/encrypt-core-merge/src/main/java/org/apache/shardingsphere/encrypt/merge/dal/impl/EncryptColumnsMergedResult.java
 ##########
 @@ -66,19 +70,50 @@ public final boolean next() throws SQLException {
         return true;
     }
     
+    private Collection<String> getAssistedQueryColumns() {
+        return getTableEncryptColumnMetaDatas().stream().map(EncryptColumnMetaData::getAssistedQueryColumnName)
+                .collect(Collectors.toList());
+    }
+    
+    private Collection<String> getPlainColumns() {
+        return getTableEncryptColumnMetaDatas().stream().map(EncryptColumnMetaData::getPlainColumnName)
+                .collect(Collectors.toList());
+    }
+    
+    private Collection<EncryptColumnMetaData> getTableEncryptColumnMetaDatas() {
+        Collection<EncryptColumnMetaData> result = new LinkedList<>();
+        for (Map.Entry<String, ColumnMetaData> entry : schemaMetaData.get(tableName).getColumns().entrySet()) {
+            if (!(entry.getValue() instanceof EncryptColumnMetaData)) {
+                continue;
+            }
+            result.add((EncryptColumnMetaData) entry.getValue());
 
 Review comment:
   OK, I fix it. Thanks.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [incubator-shardingsphere] coveralls edited a comment on issue #4964: Fixes insensitive for DESC table for encrypt.

Posted by GitBox <gi...@apache.org>.
coveralls edited a comment on issue #4964: Fixes insensitive for DESC table for encrypt.
URL: https://github.com/apache/incubator-shardingsphere/pull/4964#issuecomment-604433643
 
 
   ## Pull Request Test Coverage Report for [Build 10606](https://coveralls.io/builds/29634518)
   
   * **1** of **28**   **(3.57%)**  changed or added relevant lines in **4** files are covered.
   * **3** unchanged lines in **1** file lost coverage.
   * Overall coverage decreased (**-0.05%**) to **57.76%**
   
   ---
   
   |  Changes Missing Coverage | Covered Lines | Changed/Added Lines | % |
   | :-----|--------------|--------|---: |
   | [encrypt-core/encrypt-core-merge/src/main/java/org/apache/shardingsphere/encrypt/merge/EncryptResultDecoratorEngine.java](https://coveralls.io/builds/29634518/source?filename=encrypt-core%2Fencrypt-core-merge%2Fsrc%2Fmain%2Fjava%2Forg%2Fapache%2Fshardingsphere%2Fencrypt%2Fmerge%2FEncryptResultDecoratorEngine.java#L46) | 0 | 1 | 0.0%
   | [encrypt-core/encrypt-core-merge/src/main/java/org/apache/shardingsphere/encrypt/merge/dal/EncryptDALResultDecorator.java](https://coveralls.io/builds/29634518/source?filename=encrypt-core%2Fencrypt-core-merge%2Fsrc%2Fmain%2Fjava%2Forg%2Fapache%2Fshardingsphere%2Fencrypt%2Fmerge%2Fdal%2FEncryptDALResultDecorator.java#L45) | 0 | 1 | 0.0%
   | [encrypt-core/encrypt-core-merge/src/main/java/org/apache/shardingsphere/encrypt/merge/dal/impl/EncryptColumnsMergedResult.java](https://coveralls.io/builds/29634518/source?filename=encrypt-core%2Fencrypt-core-merge%2Fsrc%2Fmain%2Fjava%2Forg%2Fapache%2Fshardingsphere%2Fencrypt%2Fmerge%2Fdal%2Fimpl%2FEncryptColumnsMergedResult.java#L47) | 0 | 25 | 0.0%
   <!-- | **Total:** | **1** | **28** | **3.57%** | -->
   
   |  Files with Coverage Reduction | New Missed Lines | % |
   | :-----|--------------|--: |
   | [sharding-orchestration/sharding-orchestration-core/sharding-orchestration-core-registrycenter/src/main/java/org/apache/shardingsphere/orchestration/core/registrycenter/util/IpUtils.java](https://coveralls.io/builds/29634518/source?filename=sharding-orchestration%2Fsharding-orchestration-core%2Fsharding-orchestration-core-registrycenter%2Fsrc%2Fmain%2Fjava%2Forg%2Fapache%2Fshardingsphere%2Forchestration%2Fcore%2Fregistrycenter%2Futil%2FIpUtils.java#L63) | 3 | 76.0% |
   <!-- | **Total:** | **3** |  | -->
   
   |  Totals | [![Coverage Status](https://coveralls.io/builds/29634518/badge)](https://coveralls.io/builds/29634518) |
   | :-- | --: |
   | Change from base [Build 1177](https://coveralls.io/builds/29628541): |  -0.05% |
   | Covered Lines: | 11846 |
   | Relevant Lines: | 20509 |
   
   ---
   ##### 💛  - [Coveralls](https://coveralls.io)
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [incubator-shardingsphere] coveralls edited a comment on issue #4964: Fixes insensitive for DESC table for encrypt.

Posted by GitBox <gi...@apache.org>.
coveralls edited a comment on issue #4964: Fixes insensitive for DESC table for encrypt.
URL: https://github.com/apache/incubator-shardingsphere/pull/4964#issuecomment-604433643
 
 
   ## Pull Request Test Coverage Report for [Build 10657](https://coveralls.io/builds/29661060)
   
   * **1** of **26**   **(3.85%)**  changed or added relevant lines in **4** files are covered.
   * **144** unchanged lines in **10** files lost coverage.
   * Overall coverage decreased (**-0.1%**) to **57.705%**
   
   ---
   
   |  Changes Missing Coverage | Covered Lines | Changed/Added Lines | % |
   | :-----|--------------|--------|---: |
   | [encrypt-core/encrypt-core-merge/src/main/java/org/apache/shardingsphere/encrypt/merge/EncryptResultDecoratorEngine.java](https://coveralls.io/builds/29661060/source?filename=encrypt-core%2Fencrypt-core-merge%2Fsrc%2Fmain%2Fjava%2Forg%2Fapache%2Fshardingsphere%2Fencrypt%2Fmerge%2FEncryptResultDecoratorEngine.java#L46) | 0 | 1 | 0.0%
   | [encrypt-core/encrypt-core-merge/src/main/java/org/apache/shardingsphere/encrypt/merge/dal/EncryptDALResultDecorator.java](https://coveralls.io/builds/29661060/source?filename=encrypt-core%2Fencrypt-core-merge%2Fsrc%2Fmain%2Fjava%2Forg%2Fapache%2Fshardingsphere%2Fencrypt%2Fmerge%2Fdal%2FEncryptDALResultDecorator.java#L45) | 0 | 1 | 0.0%
   | [encrypt-core/encrypt-core-merge/src/main/java/org/apache/shardingsphere/encrypt/merge/dal/impl/EncryptColumnsMergedResult.java](https://coveralls.io/builds/29661060/source?filename=encrypt-core%2Fencrypt-core-merge%2Fsrc%2Fmain%2Fjava%2Forg%2Fapache%2Fshardingsphere%2Fencrypt%2Fmerge%2Fdal%2Fimpl%2FEncryptColumnsMergedResult.java#L47) | 0 | 23 | 0.0%
   <!-- | **Total:** | **1** | **26** | **3.85%** | -->
   
   |  Files with Coverage Reduction | New Missed Lines | % |
   | :-----|--------------|--: |
   | [sharding-jdbc/sharding-jdbc-core/src/main/java/org/apache/shardingsphere/shardingjdbc/jdbc/core/datasource/EncryptDataSource.java](https://coveralls.io/builds/29661060/source?filename=sharding-jdbc%2Fsharding-jdbc-core%2Fsrc%2Fmain%2Fjava%2Forg%2Fapache%2Fshardingsphere%2Fshardingjdbc%2Fjdbc%2Fcore%2Fdatasource%2FEncryptDataSource.java#L35) | 1 | 87.5% |
   | [shardingsphere-underlying/shardingsphere-common/src/main/java/org/apache/shardingsphere/underlying/common/database/type/DatabaseTypes.java](https://coveralls.io/builds/29661060/source?filename=shardingsphere-underlying%2Fshardingsphere-common%2Fsrc%2Fmain%2Fjava%2Forg%2Fapache%2Fshardingsphere%2Funderlying%2Fcommon%2Fdatabase%2Ftype%2FDatabaseTypes.java#L32) | 2 | 83.33% |
   | [sharding-core/sharding-core-entry/src/main/java/org/apache/shardingsphere/core/shard/BaseShardingEngine.java](https://coveralls.io/builds/29661060/source?filename=sharding-core%2Fsharding-core-entry%2Fsrc%2Fmain%2Fjava%2Forg%2Fapache%2Fshardingsphere%2Fcore%2Fshard%2FBaseShardingEngine.java#L127) | 3 | 92.11% |
   | [sharding-orchestration/sharding-orchestration-core/sharding-orchestration-core-registrycenter/src/main/java/org/apache/shardingsphere/orchestration/core/registrycenter/util/IpUtils.java](https://coveralls.io/builds/29661060/source?filename=sharding-orchestration%2Fsharding-orchestration-core%2Fsharding-orchestration-core-registrycenter%2Fsrc%2Fmain%2Fjava%2Forg%2Fapache%2Fshardingsphere%2Forchestration%2Fcore%2Fregistrycenter%2Futil%2FIpUtils.java#L63) | 3 | 76.0% |
   | [sharding-jdbc/sharding-jdbc-core/src/main/java/org/apache/shardingsphere/shardingjdbc/jdbc/core/statement/ShardingStatement.java](https://coveralls.io/builds/29661060/source?filename=sharding-jdbc%2Fsharding-jdbc-core%2Fsrc%2Fmain%2Fjava%2Forg%2Fapache%2Fshardingsphere%2Fshardingjdbc%2Fjdbc%2Fcore%2Fstatement%2FShardingStatement.java#L273) | 4 | 70.16% |
   | [sharding-spring/sharding-jdbc-spring/sharding-jdbc-spring-boot-starter/src/main/java/org/apache/shardingsphere/shardingjdbc/spring/boot/SpringBootConfiguration.java](https://coveralls.io/builds/29661060/source?filename=sharding-spring%2Fsharding-jdbc-spring%2Fsharding-jdbc-spring-boot-starter%2Fsrc%2Fmain%2Fjava%2Forg%2Fapache%2Fshardingsphere%2Fshardingjdbc%2Fspring%2Fboot%2FSpringBootConfiguration.java#L158) | 4 | 87.88% |
   | [sharding-core/sharding-core-common/src/main/java/org/apache/shardingsphere/core/rule/ShardingRule.java](https://coveralls.io/builds/29661060/source?filename=sharding-core%2Fsharding-core-common%2Fsrc%2Fmain%2Fjava%2Forg%2Fapache%2Fshardingsphere%2Fcore%2Frule%2FShardingRule.java#L499) | 6 | 79.61% |
   | [shardingsphere-underlying/shardingsphere-rewrite/shardingsphere-rewrite-engine/src/main/java/org/apache/shardingsphere/underlying/rewrite/SQLRewriteEntry.java](https://coveralls.io/builds/29661060/source?filename=shardingsphere-underlying%2Fshardingsphere-rewrite%2Fshardingsphere-rewrite-engine%2Fsrc%2Fmain%2Fjava%2Forg%2Fapache%2Fshardingsphere%2Funderlying%2Frewrite%2FSQLRewriteEntry.java#L54) | 12 | 0% |
   | [sharding-proxy/sharding-proxy-bootstrap/src/main/java/org/apache/shardingsphere/shardingproxy/Bootstrap.java](https://coveralls.io/builds/29661060/source?filename=sharding-proxy%2Fsharding-proxy-bootstrap%2Fsrc%2Fmain%2Fjava%2Forg%2Fapache%2Fshardingsphere%2Fshardingproxy%2FBootstrap.java#L85) | 41 | 0% |
   | [sharding-jdbc/sharding-jdbc-core/src/main/java/org/apache/shardingsphere/shardingjdbc/jdbc/core/resultset/EncryptResultSet.java](https://coveralls.io/builds/29661060/source?filename=sharding-jdbc%2Fsharding-jdbc-core%2Fsrc%2Fmain%2Fjava%2Forg%2Fapache%2Fshardingsphere%2Fshardingjdbc%2Fjdbc%2Fcore%2Fresultset%2FEncryptResultSet.java#L116) | 68 | 28.35% |
   <!-- | **Total:** | **144** |  | -->
   
   |  Totals | [![Coverage Status](https://coveralls.io/builds/29661060/badge)](https://coveralls.io/builds/29661060) |
   | :-- | --: |
   | Change from base [Build 1177](https://coveralls.io/builds/29628541): |  -0.1% |
   | Covered Lines: | 11871 |
   | Relevant Lines: | 20572 |
   
   ---
   ##### 💛  - [Coveralls](https://coveralls.io)
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [incubator-shardingsphere] dongzl commented on a change in pull request #4964: Fixes insensitive for DESC table for encrypt.

Posted by GitBox <gi...@apache.org>.
dongzl commented on a change in pull request #4964: Fixes insensitive for DESC table for encrypt.
URL: https://github.com/apache/incubator-shardingsphere/pull/4964#discussion_r399224936
 
 

 ##########
 File path: encrypt-core/encrypt-core-merge/src/main/java/org/apache/shardingsphere/encrypt/merge/dal/impl/EncryptColumnsMergedResult.java
 ##########
 @@ -66,19 +70,50 @@ public final boolean next() throws SQLException {
         return true;
     }
     
+    private Collection<String> getAssistedQueryColumns() {
+        return getTableEncryptColumnMetaDatas().stream().map(EncryptColumnMetaData::getAssistedQueryColumnName)
+                .collect(Collectors.toList());
+    }
+    
+    private Collection<String> getPlainColumns() {
+        return getTableEncryptColumnMetaDatas().stream().map(EncryptColumnMetaData::getPlainColumnName)
+                .collect(Collectors.toList());
+    }
+    
+    private Collection<EncryptColumnMetaData> getTableEncryptColumnMetaDatas() {
+        Collection<EncryptColumnMetaData> result = new LinkedList<>();
+        for (Map.Entry<String, ColumnMetaData> entry : schemaMetaData.get(tableName).getColumns().entrySet()) {
 
 Review comment:
   OK, I fix it. Thanks.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [incubator-shardingsphere] terrymanu commented on a change in pull request #4964: Fixes insensitive for DESC table for encrypt.

Posted by GitBox <gi...@apache.org>.
terrymanu commented on a change in pull request #4964: Fixes insensitive for DESC table for encrypt.
URL: https://github.com/apache/incubator-shardingsphere/pull/4964#discussion_r398691661
 
 

 ##########
 File path: encrypt-core/encrypt-core-merge/src/main/java/org/apache/shardingsphere/encrypt/merge/dal/impl/EncryptColumnsMergedResult.java
 ##########
 @@ -66,19 +70,50 @@ public final boolean next() throws SQLException {
         return true;
     }
     
+    private Collection<String> getAssistedQueryColumns() {
+        return getTableEncryptColumnMetaDatas().stream().map(EncryptColumnMetaData::getAssistedQueryColumnName)
+                .collect(Collectors.toList());
+    }
+    
+    private Collection<String> getPlainColumns() {
+        return getTableEncryptColumnMetaDatas().stream().map(EncryptColumnMetaData::getPlainColumnName)
+                .collect(Collectors.toList());
+    }
+    
+    private Collection<EncryptColumnMetaData> getTableEncryptColumnMetaDatas() {
+        Collection<EncryptColumnMetaData> result = new LinkedList<>();
+        for (Map.Entry<String, ColumnMetaData> entry : schemaMetaData.get(tableName).getColumns().entrySet()) {
 
 Review comment:
   Please do not use `Map.Entry`, just use `Entry`

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [incubator-shardingsphere] terrymanu merged pull request #4964: Fixes insensitive for DESC table for encrypt.

Posted by GitBox <gi...@apache.org>.
terrymanu merged pull request #4964: Fixes insensitive for DESC table for encrypt.
URL: https://github.com/apache/incubator-shardingsphere/pull/4964
 
 
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [incubator-shardingsphere] terrymanu commented on a change in pull request #4964: Fixes insensitive for DESC table for encrypt.

Posted by GitBox <gi...@apache.org>.
terrymanu commented on a change in pull request #4964: Fixes insensitive for DESC table for encrypt.
URL: https://github.com/apache/incubator-shardingsphere/pull/4964#discussion_r398692427
 
 

 ##########
 File path: encrypt-core/encrypt-core-merge/src/main/java/org/apache/shardingsphere/encrypt/merge/dal/impl/EncryptColumnsMergedResult.java
 ##########
 @@ -66,19 +70,50 @@ public final boolean next() throws SQLException {
         return true;
     }
     
+    private Collection<String> getAssistedQueryColumns() {
+        return getTableEncryptColumnMetaDatas().stream().map(EncryptColumnMetaData::getAssistedQueryColumnName)
+                .collect(Collectors.toList());
+    }
+    
+    private Collection<String> getPlainColumns() {
+        return getTableEncryptColumnMetaDatas().stream().map(EncryptColumnMetaData::getPlainColumnName)
+                .collect(Collectors.toList());
+    }
+    
+    private Collection<EncryptColumnMetaData> getTableEncryptColumnMetaDatas() {
+        Collection<EncryptColumnMetaData> result = new LinkedList<>();
+        for (Map.Entry<String, ColumnMetaData> entry : schemaMetaData.get(tableName).getColumns().entrySet()) {
+            if (!(entry.getValue() instanceof EncryptColumnMetaData)) {
+                continue;
+            }
+            result.add((EncryptColumnMetaData) entry.getValue());
 
 Review comment:
   It is better to change to: 
   
   ```java
   if (entry.getValue() instanceof EncryptColumnMetaData) {
       result.add((EncryptColumnMetaData) entry.getValue());
   }
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [incubator-shardingsphere] terrymanu commented on a change in pull request #4964: Fixes insensitive for DESC table for encrypt.

Posted by GitBox <gi...@apache.org>.
terrymanu commented on a change in pull request #4964: Fixes insensitive for DESC table for encrypt.
URL: https://github.com/apache/incubator-shardingsphere/pull/4964#discussion_r398693301
 
 

 ##########
 File path: encrypt-core/encrypt-core-merge/src/main/java/org/apache/shardingsphere/encrypt/merge/dal/impl/EncryptColumnsMergedResult.java
 ##########
 @@ -66,19 +70,50 @@ public final boolean next() throws SQLException {
         return true;
     }
     
+    private Collection<String> getAssistedQueryColumns() {
+        return getTableEncryptColumnMetaDatas().stream().map(EncryptColumnMetaData::getAssistedQueryColumnName)
+                .collect(Collectors.toList());
+    }
+    
+    private Collection<String> getPlainColumns() {
+        return getTableEncryptColumnMetaDatas().stream().map(EncryptColumnMetaData::getPlainColumnName)
+                .collect(Collectors.toList());
+    }
+    
+    private Collection<EncryptColumnMetaData> getTableEncryptColumnMetaDatas() {
+        Collection<EncryptColumnMetaData> result = new LinkedList<>();
+        for (Map.Entry<String, ColumnMetaData> entry : schemaMetaData.get(tableName).getColumns().entrySet()) {
+            if (!(entry.getValue() instanceof EncryptColumnMetaData)) {
+                continue;
+            }
+            result.add((EncryptColumnMetaData) entry.getValue());
+        }
+        return result;
+    }
+    
     @Override
     public final Object getValue(final int columnIndex, final Class<?> type) throws SQLException {
         if (1 == columnIndex) {
             String columnName = getOriginalValue(columnIndex, type).toString();
-            Optional<EncryptTable> encryptTable = encryptRule.findEncryptTable(tableName);
-            if (encryptTable.isPresent() && encryptTable.get().getCipherColumns().contains(columnName)) {
-                return encryptTable.get().getLogicColumnOfCipher(columnName);
-            }
-            return columnName;
+            Optional<String> logicColumn = getLogicColumnOfCipher(columnName);
+            return logicColumn.isPresent() ? logicColumn.get() : columnName;
         }
         return getOriginalValue(columnIndex, type);
     }
     
+    private Optional<String> getLogicColumnOfCipher(final String cipherColumn) {
+        for (Map.Entry<String, ColumnMetaData> entry : schemaMetaData.get(tableName).getColumns().entrySet()) {
 
 Review comment:
   Please do not use `Map.Entry`, just use `Entry`

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [incubator-shardingsphere] coveralls commented on issue #4964: Fixes insensitive for DESC table for encrypt.

Posted by GitBox <gi...@apache.org>.
coveralls commented on issue #4964: Fixes insensitive for DESC table for encrypt.
URL: https://github.com/apache/incubator-shardingsphere/pull/4964#issuecomment-604433643
 
 
   ## Pull Request Test Coverage Report for [Build 2244](https://coveralls.io/builds/29633549)
   
   * **1** of **28**   **(3.57%)**  changed or added relevant lines in **4** files are covered.
   * No unchanged relevant lines lost coverage.
   * Overall coverage decreased (**-0.05%**) to **57.765%**
   
   ---
   
   |  Changes Missing Coverage | Covered Lines | Changed/Added Lines | % |
   | :-----|--------------|--------|---: |
   | [encrypt-core/encrypt-core-merge/src/main/java/org/apache/shardingsphere/encrypt/merge/EncryptResultDecoratorEngine.java](https://coveralls.io/builds/29633549/source?filename=encrypt-core%2Fencrypt-core-merge%2Fsrc%2Fmain%2Fjava%2Forg%2Fapache%2Fshardingsphere%2Fencrypt%2Fmerge%2FEncryptResultDecoratorEngine.java#L46) | 0 | 1 | 0.0%
   | [encrypt-core/encrypt-core-merge/src/main/java/org/apache/shardingsphere/encrypt/merge/dal/EncryptDALResultDecorator.java](https://coveralls.io/builds/29633549/source?filename=encrypt-core%2Fencrypt-core-merge%2Fsrc%2Fmain%2Fjava%2Forg%2Fapache%2Fshardingsphere%2Fencrypt%2Fmerge%2Fdal%2FEncryptDALResultDecorator.java#L45) | 0 | 1 | 0.0%
   | [encrypt-core/encrypt-core-merge/src/main/java/org/apache/shardingsphere/encrypt/merge/dal/impl/EncryptColumnsMergedResult.java](https://coveralls.io/builds/29633549/source?filename=encrypt-core%2Fencrypt-core-merge%2Fsrc%2Fmain%2Fjava%2Forg%2Fapache%2Fshardingsphere%2Fencrypt%2Fmerge%2Fdal%2Fimpl%2FEncryptColumnsMergedResult.java#L47) | 0 | 25 | 0.0%
   <!-- | **Total:** | **1** | **28** | **3.57%** | -->
   
   
   |  Totals | [![Coverage Status](https://coveralls.io/builds/29633549/badge)](https://coveralls.io/builds/29633549) |
   | :-- | --: |
   | Change from base [Build 1177](https://coveralls.io/builds/29628541): |  -0.05% |
   | Covered Lines: | 11847 |
   | Relevant Lines: | 20509 |
   
   ---
   ##### 💛  - [Coveralls](https://coveralls.io)
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services