-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
[EPIC] JDBC destination integration tests failing #15172
Comments
@edgao this issue affects not only Postgres destination but also all JDBC destinations. You can test this by running acceptance tests, for example, on the mysql destination. We will get the same error. Maybe this information will help you. |
finally confirmed that #13591 is the cause (was able to check out the previous commit and run tests successfully). Need to determine if this is a problem in normalization or just a problem with how the tests try to parse the timestamps. |
updated description with more information about what's happening. @grishick I think we should prioritize this somewhat highly, since it's blocking |
agreed. Do you know if the fix will be in normalization or in shared jdbc destination code or in each jdbc destination separately? |
I think it'll be in the shared jdbc destination test code, and potentially each jdbc destination's test implementation. Either the Basic or Advanced The |
looks like destination-postgres was fixed here #15289. I would expect other destinations to look pretty similar. |
For now, I see 4 jdbc connectors affected by this Python change. Created sub-task for them. For now I'm adding fixes individually to unblock others and deliver fixes ASAP. When it comes to the last one I will check if it's possible to move out something to the parent module because fixes seem to be similar but not the same for all of connectos |
These tests are failing due to a timestamp parsing error when verifying the output of normalization. See e.g. this test run, with errors like this:
This started happening after #13591. Previously, we were receiving timestamps like
"2022-11-22T01:23:45"
(note theT
between the date and time, and the lack of decimals).What needs to happen on this ticket?
*TestDataComparator
to be able to parse the new timestamp formatThe text was updated successfully, but these errors were encountered: