Details
-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 2.1.13
-
Fix Version/s: 2.1.14
-
Component/s: avrorouter
-
Labels:None
Description
The following SQL will corrupt the conversion process.
CREATE TABLE test.t1(a int, b datetime(3)); |
INSERT INTO test.t1 VALUES(1, NOW()); |
ALTER TABLE test.t1 ADD COLUMN c INT AFTER a; |
INSERT INTO test.t1 VALUES(2, 2, NOW()); |