[fix](planner)cast expr should do nothing in compactForLiteral method (#34047)

This commit is contained in:
starocean999
2024-04-26 09:35:47 +08:00
committed by yiguolei
parent fdf91759b6
commit b7b87fbb95
2 changed files with 16 additions and 0 deletions

View File

@ -592,4 +592,9 @@ public class CastExpr extends Expr {
public boolean isNotFold() {
return this.notFold;
}
@Override
protected void compactForLiteral(Type type) {
// do nothing
}
}