-
-
Notifications
You must be signed in to change notification settings - Fork 523
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
Test suite refactor #60
Conversation
0e13ba8
to
9629173
Compare
9629173
to
abed934
Compare
@tyt2y3 @billy1624
Was wondering if you guys knew why this is happening? |
What is the generated query of the |
Yes I ran into the problem with But in order to get the tests to pass I also had to do
(Notice the cast as u64). I'm confused, does |
I originally believe that the binded value should match the column's native type. |
So moving on to some other tests now, I get an issue with
which happens at this line of code:
|
This doesn't work:
This works:
Pretty strange because as |
Apparently we need to change every |
3a0e7f3
to
402c003
Compare
# Conflicts: # .github/workflows/rust.yml
447d422
to
bc72645
Compare
Hey @samsamai, I just set the ENV for github actions. And it seems to be running. You can see the CI result here. Btw... github actions is having some issue now. So, it might take a while to finish all tests lolll. |
GitHub Actions Error Summary
All other tests passed |
cf42752
to
bc72645
Compare
I am trying to fix the Postgres issues with i32 & i64 now. |
717f72f
to
d5447bc
Compare
Hi @samsamai, please review the changes I pushed. Many thanks!! |
Hi @billy1624, thanks for fixing that issue with i32, i64 it was driving me bunkers! Still not sure how the feature flag I had in there wasn't doing the same thing but I need to have a closer look at your code. Cheers |
Hey @tyt2y3, take a look at this commit, 1eb4900, I made the changes as I encounter some issue with SQLite. For some reason when when I e.g. https://github.com/SeaQL/sea-orm/runs/3260434167?check_suite_focus=true#step:6:135 |
Please do check if I keep the your original logic! :) |
I think we're ready to go with this. |
Refactor the test suite and make it run for sqlite, mysql and postgres.