hit-lacus commented on a change in pull request #747: KYLIN-3832 Query pushdown 
support postgresql
URL: https://github.com/apache/kylin/pull/747#discussion_r339346495
 
 

 ##########
 File path: 
source-jdbc/src/main/java/org/apache/kylin/source/jdbc/JdbcHiveInputBase.java
 ##########
 @@ -498,6 +498,8 @@ static String quoteIdentifier(String identifier, 
SourceDialect dialect) {
                 case HIVE:
                     identifierArray[i] = "`" + identifierArray[i] + "`";
                     break;
+                case POSTGRESQL:
+                    break;
 
 Review comment:
   Could we add  `identifierArray[i] = "\"" + identifierArray[i] + "\"";` here?

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to