TeslaCN commented on issue #23885: URL: https://github.com/apache/shardingsphere/issues/23885#issuecomment-1411727997
This issue is caused by the single quote. We may need to do something like https://github.com/apache/shardingsphere/pull/18859 for PostgreSQL. ``` ┌[kiwish-4.2]-(~)- └> jshell | Welcome to JShell -- Version 17.0.1 | For an introduction type: /help intro jshell> java.nio.charset.Charset.forName("utf-8"); $1 ==> UTF-8 jshell> java.nio.charset.Charset.forName("'utf-8'"); | Exception java.nio.charset.IllegalCharsetNameException: 'utf-8' | at Charset.checkName (Charset.java:305) | at Charset.lookup2 (Charset.java:481) | at Charset.lookup (Charset.java:461) | at Charset.forName (Charset.java:525) | at (#2:1) ``` -- 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]
