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/05/06 12:24:54 UTC

[GitHub] [shardingsphere] sandynz commented on issue #17380: Create table failed in ShardingSphereDataSource immediately after creating schema

sandynz commented on issue #17380:
URL: https://github.com/apache/shardingsphere/issues/17380#issuecomment-1119561126

   Seems `PostgreSQLDDLStatementSQLVisitor.visitCreateSchema` doesn't filter quoted character.
   
   ```
       public ASTNode visitCreateSchema(final CreateSchemaContext ctx) {
           PostgreSQLCreateSchemaStatement result = new PostgreSQLCreateSchemaStatement();
           if (null != ctx.createSchemaClauses().colId()) {
               result.setSchemaName(ctx.createSchemaClauses().colId().getText());
           }
   ```
   
   


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