We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aff5053 commit a690558Copy full SHA for a690558
src/main/java/net/sf/jsqlparser/util/deparser/ExpressionDeParser.java
@@ -579,12 +579,12 @@ public void visit(BitwiseXor bitwiseXor) {
579
public void visit(CastExpression cast) {
580
if (cast.isUseCastKeyword()) {
581
buffer.append("CAST(");
582
- buffer.append(cast.getLeftExpression());
+ cast.getLeftExpression().accept(this);
583
buffer.append(" AS ");
584
buffer.append(cast.getType());
585
buffer.append(")");
586
} else {
587
588
buffer.append("::");
589
590
}
0 commit comments