-
Notifications
You must be signed in to change notification settings - Fork 252
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
Support older sqlite versions. #1511
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1511 +/- ##
=======================================
Coverage 61.06% 61.07%
=======================================
Files 141 142 +1
Lines 16675 16710 +35
=======================================
+ Hits 10182 10205 +23
- Misses 6493 6505 +12 ☔ View full report in Codecov by Sentry. |
caa7c56
to
c1c5d17
Compare
a8c4d6d
to
260c302
Compare
It turns out that Google is requiring Android API 34 anyway, so this PR is not needed: https://support.google.com/googleplay/android-developer/answer/11926878?hl=en |
260c302
to
16db593
Compare
The `FALSE` constant was introduced in sqlite version 3.23.0, but Android does not support this version of sqlite until API level 30; we support back to Android API 27 so we have to use `0` as the constant for `FALSE` instead.
16db593
to
d202d47
Compare
force-pushed to remove changes that are unnecessary as we now verify that we're using SQLite 3.35.0 or higher. |
d202d47
to
2bb714d
Compare
force-pushed to fix cargo fmt error. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
utACK, but I argue that we no longer need the version check. I don't object to keeping it; if we do, fix the clippy lints and please add a comment saying that what is being checked is the version used by rusqlite
, which may be different than the version used to run view queries.
2bb714d
to
c6d6baf
Compare
af9d5b3
to
1cfcfa2
Compare
1cfcfa2
to
5e6a8f0
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
utACK 5e6a8f0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
utACK f063e7a
No description provided.