File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
src/main/java/net/sf/jsqlparser/util/deparser Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,9 @@ public void deParse(Update update) {
7474 if (!update .isUseSelect ()) {
7575 for (int i = 0 ; i < update .getColumns ().size (); i ++) {
7676 Column column = update .getColumns ().get (i );
77- buffer .append (column .getFullyQualifiedName ()).append (" = " );
77+ column .accept (expressionVisitor );
78+
79+ buffer .append (" = " );
7880
7981 Expression expression = update .getExpressions ().get (i );
8082 expression .accept (expressionVisitor );
@@ -91,7 +93,7 @@ public void deParse(Update update) {
9193 buffer .append (", " );
9294 }
9395 Column column = update .getColumns ().get (i );
94- buffer . append ( column .getFullyQualifiedName () );
96+ column .accept ( expressionVisitor );
9597 }
9698 if (update .isUseColumnsBrackets ()) {
9799 buffer .append (")" );
You can’t perform that action at this time.
0 commit comments