felipepessoto commented on PR #12218:
URL: https://github.com/apache/gluten/pull/12218#issuecomment-4606496848
Could you add a DV-enabled CDF regression test to confirm the behavior?
Something like:
```
CREATE TABLE t (id INT, name STRING) USING delta
TBLPROPERTIES ('delta.enableChangeDataFeed'='true',
'delta.enableDeletionVectors'='true');
INSERT INTO t VALUES (1,'v1'),(2,'v2'),(3,'v3');
DELETE FROM t WHERE id = 2;
SELECT id, name, _change_type FROM table_changes('t', 0);
```
compared against vanilla Spark (checkAnswer)
--
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]