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 2019/11/21 09:50:40 UTC

[GitHub] [incubator-shardingsphere] laoguanjie opened a new issue #3571: plain column name failed to pasre to cipher column in join clause

laoguanjie opened a new issue #3571: plain column name failed to pasre to cipher column  in join clause
URL: https://github.com/apache/incubator-shardingsphere/issues/3571
 
 
   you can find 'value' is translated to 'value_cipher'.
   
   but, 
   
   if sql is 
   ```
   select a.user_id, b.value value from user a join (select user_id, value from user_mapping a where id = 100000100) b on (a.user_id = b.user_id)
   ```
   
   it would be parsed to 
   
   ```
   select a.user_id, b.value value from iot_user a join (select user_id, value from user_mapping a where id = 100000100) b on (a.user_id = b.user_id)
   ```
   
   'b.value' failed to be translated to 'b.value_cipher' !!

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