starocean999 commented on code in PR #43157:
URL: https://github.com/apache/doris/pull/43157#discussion_r1843145082
##########
fe/fe-core/src/main/java/org/apache/doris/nereids/parser/LogicalPlanBuilder.java:
##########
@@ -3999,4 +4001,17 @@ public SetUserPropertiesCommand
visitSetUserProperties(SetUserPropertiesContext
public SetDefaultStorageVaultCommand
visitSetDefaultStorageVault(SetDefaultStorageVaultContext ctx) {
return new
SetDefaultStorageVaultCommand(stripQuotes(ctx.identifier().getText()));
}
+
+ @Override
+ public LogicalPlan visitShowCollation(ShowCollationContext ctx) {
+ String wild = null;
+ if (ctx.wildWhere() != null) {
+ if (ctx.wildWhere().LIKE() != null) {
+ wild = ctx.wildWhere().STRING_LITERAL().getText().replace("'",
"").trim();
Review Comment:
```suggestion
wild =
stripQuotes(ctx.wildWhere().STRING_LITERAL().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: [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]