deniskuzZ commented on code in PR #5267:
URL: https://github.com/apache/hive/pull/5267#discussion_r1620156313


##########
ql/src/java/org/apache/hadoop/hive/ql/parse/rewrite/MergeRewriter.java:
##########
@@ -178,8 +178,8 @@ protected static class MergeWhenClauseSqlGenerator 
implements MergeStatement.Mer
     @Override
     public void appendWhenNotMatchedInsertClause(MergeStatement.InsertClause 
insertClause) {
       sqlGenerator.append("INSERT INTO 
").append(mergeStatement.getTargetName());
-      if (insertClause.getColumnListText() != null) {
-        sqlGenerator.append(' ').append(insertClause.getColumnListText());
+      if (insertClause.getColumnList() != null) {
+        sqlGenerator.append(' 
').append(String.join(",",insertClause.getColumnList()));

Review Comment:
   ok



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to