ODC version
ODC432
OB version
any version
What happened?
The issue of archiving failure due to inconsistent field order between source and target in OBMySQL mode has been fixed
What did you expect to happen?
。
How can we reproduce it (as minimally and precisely as possible)?
source
CREATE TABLE `p_1` (
`col1` int(11) NOT NULL AUTO_INCREMENT,
`col2` decimal(10,2) DEFAULT NULL,
`col3` decimal(10,2) DEFAULT NULL,
`col4` bit(8) DEFAULT NULL,
PRIMARY KEY (`col1`)
)
CREATE TABLE `p_1` (
`col1` int(11) NOT NULL AUTO_INCREMENT,
`col3` decimal(10,2) DEFAULT NULL,
`col2` decimal(10,2) DEFAULT NULL,
`col4` bit(8) DEFAULT NULL,
PRIMARY KEY (`col1`)
)
Anything else we need to know?
No response