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 2022/04/29 02:34:33 UTC

[GitHub] [shardingsphere] strongduanmu opened a new issue, #17192: Consider adding schemaName property to EncryptContext to support PostgreSQL

strongduanmu opened a new issue, #17192:
URL: https://github.com/apache/shardingsphere/issues/17192

   ## Feature Request
   
   ### Is your feature request related to a problem?
   
   No.
   
   ### Describe the feature you would like.
   
   After we support the PostgreSQL schema feature, we need to consider adding schemaName parameter to EncryptContext so that users can complete more advanced encryption and decryption.
   
   The modified EncryptContext is as follows:
   
   ```java
   /**
    * Encrypt context.
    */
   @RequiredArgsConstructor
   @Getter
   @Setter
   public final class EncryptContext {
       
       private final String databaseName;
       
       private final String schemaName;
       
       private final String tableName;
       
       private final String columnName;
       
       private EncryptColumnDataType logicDataType;
       
       private EncryptColumnDataType plainDataType;
       
       private EncryptColumnDataType cipherDataType;
       
       private EncryptColumnDataType assistedQueryDataType;
   }
   ```
   


-- 
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.

To unsubscribe, e-mail: notifications-unsubscribe@shardingsphere.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [shardingsphere] tristaZero closed issue #17192: Consider adding schemaName property to EncryptContext to support PostgreSQL

Posted by GitBox <gi...@apache.org>.
tristaZero closed issue #17192: Consider adding schemaName property to EncryptContext to support PostgreSQL
URL: https://github.com/apache/shardingsphere/issues/17192


-- 
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.

To unsubscribe, e-mail: notifications-unsubscribe@shardingsphere.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org