Skip to content

Commit e425dc2

Browse files
committed
null toString used
1 parent fc076e8 commit e425dc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/net/sf/jsqlparser/util/deparser/ExpressionDeParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ public void visit(NotEqualsTo notEqualsTo) {
234234

235235
@Override
236236
public void visit(NullValue nullValue) {
237-
buffer.append("NULL");
237+
buffer.append(nullValue.toString());
238238

239239
}
240240

0 commit comments

Comments
 (0)