beliefer commented on code in PR #50060:
URL: https://github.com/apache/spark/pull/50060#discussion_r1977206479


##########
connector/docker-integration-tests/src/test/scala/org/apache/spark/sql/jdbc/v2/MsSqlServerIntegrationSuite.scala:
##########
@@ -91,6 +91,14 @@ class MsSqlServerIntegrationSuite extends 
DockerJDBCIntegrationV2Suite with V2JD
          |)
                    """.stripMargin
     ).executeUpdate()
+    connection.prepareStatement("CREATE TABLE employee_rpadlpad_test (dept 
INTEGER, name VARCHAR(32)")
+      .executeUpdate()
+    connection.prepareStatement("INSERT INTO employee_rpadlpad_test VALUES (1, 
'spark'")
+      .executeUpdate()
+    connection.prepareStatement("INSERT INTO employee_rpadlpad_test VALUES (2, 
'xxxx'")
+      .executeUpdate()
+    connection.prepareStatement("INSERT INTO employee_rpadlpad_test VALUES (3, 
'xxxxxxxxxx'")
+      .executeUpdate()

Review Comment:
   Please create extra table, you can reuse `employee`.



-- 
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: reviews-unsubscr...@spark.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to