Copilot commented on code in PR #9699:
URL: https://github.com/apache/incubator-gluten/pull/9699#discussion_r2097256721


##########
backends-clickhouse/src-delta-32/test/scala/org/apache/spark/gluten/delta/GlutenDeltaMergeTreeDeletionVectorSuite.scala:
##########
@@ -160,5 +165,106 @@ class GlutenDeltaMergeTreeDeletionVectorSuite extends 
CreateMergeTreeSuite {
     )
     checkFallbackOperators(df, 0)
   }
+
+  test("Gluten-9697: Add 'reorg' command ut for the mergetree + delta dv") {
+    val tableName = "mergetree_delta_dv_reorg"
+    withTable(tableName) {
+      withTempDir {
+        dirName =>
+          val s = createTableBuilder(tableName, "clickhouse", 
s"$dirName/$tableName")
+            .withProps(Map("delta.enableDeletionVectors" -> "'true'"))

Review Comment:
   The Map value for delta.enableDeletionVectors includes nested quotes, 
passing "'true'" instead of "true"; remove the extra quotes so the property is 
correctly enabled.
   ```suggestion
               .withProps(Map("delta.enableDeletionVectors" -> "true"))
   ```



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