linhongzhi123 commented on issue #28450:
URL: 
https://github.com/apache/shardingsphere/issues/28450#issuecomment-1722438796

   > @linhongzhi123 Can you provide more information to help us reproduce this 
bug?
   
   Here is my configuration information
   ----------------------------------------
   .properties
   
spring.datasource.dynamic.datasource.shareen.url=jdbc:shardingsphere:classpath:sharding.yml
   
spring.datasource.dynamic.datasource.shareen.driver-class-name=org.apache.shardingsphere.driver.ShardingSphereDriver
   
   
   --------------------------
   .yml
   dataSources:
     shareen:
       dataSourceClassName: com.zaxxer.hikari.HikariDataSource
       driverClassName: org.postgresql.Driver
       jdbcUrl: 
jdbc:postgresql://localhost:5432/tz_wg_zx?useUnicode=true&characterEncoding=utf8&autoReconnect=true&stringtype=unspecified
       username: postgres
       password: 123456
   rules:
   - !ENCRYPT
     tables:
       test_user:
         columns:
           id_card:
             cipher:
               name: id_card
               encryptorName: password_encryptor
             likeQuery:
               name: id_card_like
               encryptorName: like_encryptor
         queryWithCipherColumn: true
     encryptors:
       assisted_encryptor:
         type: AES
         props:
           aes-key-value: 123456abc
       like_encryptor:
         type: CHAR_DIGEST_LIKE
       password_encryptor:
         type: AES
         props:
           aes-key-value: 123456abc
   props:
     sql-show: true
   ---------------
   The above error occurs when the configuration is performed according to the 
5.4.0 documentation。
   Hope you can answer
   


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to