Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug]: The issue of archiving failure due to inconsistent field order between source and target in OBMySQL mode has been fixed #4137

Open
Huangxiao-mas opened this issue Jan 8, 2025 · 0 comments
Assignees
Labels
priority-medium type-bug Something isn't working
Milestone

Comments

@Huangxiao-mas
Copy link
Collaborator

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
priority-medium type-bug Something isn't working
Projects
Status: New
Development

No branches or pull requests

2 participants