-
Notifications
You must be signed in to change notification settings - Fork 197
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
Table data check fails if export-fix-sql is disabled for tables with complex json #830
Labels
Comments
Code:
Related: #829 |
This is with master @ 24aedc3 |
For fixes: Option 1:
Option 2:
|
For JSON support: #674 |
This was referenced Nov 27, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Bug Report
With
export-fix-sql = false
this would result in this:With
export-fix-sql = true
this would result in this:What happens here is this:
compareChecksumAndGetCount()
would returnisEqual=false
as the checksum doesn't match due to representation differences for the JSON type.if !isEqual && df.exportFixSQL {
would only callcompareRows()
ifexportFixSQL
is true.So when
export-fix-sql
is set to true it will check row data if the checksum doesn't match, but this isn't done if this setting is set to false.The text was updated successfully, but these errors were encountered: