snuyanzin commented on code in PR #20663:
URL: https://github.com/apache/flink/pull/20663#discussion_r963431761
##########
flink-table/flink-table-planner/src/main/java/org/apache/flink/table/planner/delegation/PlannerContext.java:
##########
@@ -187,7 +187,7 @@ public FlinkCalciteCatalogReader
createCatalogReader(boolean lenientCaseSensitiv
}
final SqlParser.Config newSqlParserConfig =
-
SqlParser.configBuilder(sqlParserConfig).setCaseSensitive(caseSensitive).build();
+ SqlParser.config().withCaseSensitive(caseSensitive);
Review Comment:
good catch, thanks 🤦
i replaced it like
```java
final SqlParser.Config newSqlParserConfig =
sqlParserConfig.withCaseSensitive(caseSensitive);
```
--
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]