sunxiaoguang commented on code in PR #49452: URL: https://github.com/apache/spark/pull/49452#discussion_r1916626537
########## sql/core/src/test/scala/org/apache/spark/sql/jdbc/JDBCV2Suite.scala: ########## @@ -3097,4 +3097,19 @@ class JDBCV2Suite extends QueryTest with SharedSparkSession with ExplainSuiteHel assert(rows.contains(Row(null))) assert(rows.contains(Row("a a a"))) } + + test("SPARK-50792: Format binary data as a binary literal in JDBC.") { + val tableName = "h2.test.binary_literal" + withTable(tableName) { + // Create a table with binary column + val binary = "X'123456'" + + sql(s"CREATE TABLE $tableName (binary_col BINARY)") + sql(s"INSERT INTO $tableName VALUES ($binary)") + + val select = s"SELECT * FROM $tableName WHERE binary_col = $binary" Review Comment: Verification added, PTAL. Thanks -- 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