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) {
74
74
if (!update .isUseSelect ()) {
75
75
for (int i = 0 ; i < update .getColumns ().size (); i ++) {
76
76
Column column = update .getColumns ().get (i );
77
- buffer .append (column .getFullyQualifiedName ()).append (" = " );
77
+ column .accept (expressionVisitor );
78
+
79
+ buffer .append (" = " );
78
80
79
81
Expression expression = update .getExpressions ().get (i );
80
82
expression .accept (expressionVisitor );
@@ -91,7 +93,7 @@ public void deParse(Update update) {
91
93
buffer .append (", " );
92
94
}
93
95
Column column = update .getColumns ().get (i );
94
- buffer . append ( column .getFullyQualifiedName () );
96
+ column .accept ( expressionVisitor );
95
97
}
96
98
if (update .isUseColumnsBrackets ()) {
97
99
buffer .append (")" );
You can’t perform that action at this time.
0 commit comments