Details
-
Task
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
None
Description
Exa cdc 0.0.4 appears not to support truncate
Reproduction
CREATE TABLE test_truncate_ops (
|
id INT PRIMARY KEY,
|
data VARCHAR(50) |
);
|
|
|
INSERT INTO test_truncate_ops (id, data) VALUES (1, 'Row 1'), (2, 'Row 2'), (3, 'Row 3'), (4, 'Row 4'), (5, 'Row 5'); |
|
|
TRUNCATE TABLE test_truncate_ops;
|
Actual
Exasol still has records inside it
Expected
Exasol table "test_truncate_ops" should have zero records just like in mariadb