snuyanzin commented on code in PR #89:
URL: 
https://github.com/apache/flink-connector-jdbc/pull/89#discussion_r1458591446


##########
flink-connector-jdbc/src/test/java/org/apache/flink/connector/jdbc/databases/oracle/dialect/OraclePreparedStatementTest.java:
##########
@@ -48,10 +48,10 @@ void testInsertStatement() {
         String insertStmt = dialect.getInsertIntoStatement(tableName, 
fieldNames);
         assertThat(insertStmt)
                 .isEqualTo(
-                        "INSERT INTO tbl(id, name, email, ts, field1, field_2, 
__field_3__) "
+                        "INSERT INTO \"tbl\"(\"id\", \"name\", \"email\", 
\"ts\", \"field1\", \"field_2\", \"__field_3__\") "
                                 + "VALUES (:id, :name, :email, :ts, :field1, 
:field_2, :__field_3__)");
         NamedStatementMatcher.parsedSql(
-                        "INSERT INTO tbl(id, name, email, ts, field1, field_2, 
__field_3__) "
+                        "INSERT INTO \"tbl\"(\"id\", \"name\", \"email\", 
\"ts\", \"field1\", \"field_2\", \"__field_3__\") "

Review Comment:
   can we have a a filaing test reproducing the problem?



-- 
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]

Reply via email to