huangzhir commented on PR #4643: URL: https://github.com/apache/kyuubi/pull/4643#issuecomment-1493327648
I think we have the following solutions:: 1. Make no changes and keep the behavior the same as Hive. (Convert uppercase to 'X', lowercase to 'x', and number to 'n') 2. Add a solution to address the issue of Chinese character obfuscation. (Convert Chinese characters to '密') 3. Replace each character set in Unicode with a different character. 4. Replace all characters except English letters and numbers with a single character. (Add replacement for other characters, e.g., convert all other characters to 'U') 5. Treat all characters in the same way. (Convert all characters to 'X') 6. Other solutions are welcome. I am willing to work towards everyone's ideas to solve this problem. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
