forked from launchbadge/sqlx
-
Notifications
You must be signed in to change notification settings - Fork 2
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
Merge launchbadge/sqlx master into JetASAP/sqlx master #12
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Co-authored-by: Austin Bonander <[email protected]>
* NewRowid, Column opcodes, better pointer handling * Implement tracking of column typing on sqlite explain parser * fmt for sqlite column typing for explain parsing Co-authored-by: marshoepial <[email protected]>
This fixes a panic when sharing an SQLite connection pool between tokio runtime and actix runtime
* fix test suite * rustfmt * need Row * test: fix integration test scripts and update the upstream supported databases Signed-off-by: Atkins Chang <[email protected]> * ci(actions): update supported databases Signed-off-by: Atkins Chang <[email protected]> * ci(actions): use `pg_isready` instead of `sleep` to avoid error cause by database not ready Signed-off-by: Atkins Chang <[email protected]> * feat(core): add `trait PgConnectionInfo` for connection parameter status from server Signed-off-by: Atkins Chang <[email protected]> * test(postgres): fix integration test for postgres Signed-off-by: Atkins Chang <[email protected]> * test(mysql): fix integration tests Signed-off-by: Atkins Chang <[email protected]> * ci(actions): test database against the oldest and newest supported versions Signed-off-by: Atkins Chang <[email protected]> * docs(core): document `trait PgConnectionInfo` Signed-off-by: Atkins Chang <[email protected]> Co-authored-by: Montana Low <[email protected]>
Signed-off-by: Atkins Chang <[email protected]>
* sqlite: use Arc instead of Copy-able StatementHandle This guarantees that StatementHandle is never used after calling `sqlite3_finalize`. Now `sqlite3_finalize` is only called when StatementHandle is dropped. (cherry picked from commit 5eebc05) * sqlite: use Weak poiter to StatementHandle in the worker Otherwise some tests fail to close connection. (cherry picked from commit 5461eee) * Fix segfault due to race condition in sqlite (#1300) (cherry picked from commit bb62cf7) * fix(sqlite): run `sqlite3_reset()` in `StatementWorker` this avoids possible race conditions without using a mutex * fix(sqlite): have `StatementWorker` keep a strong ref to `ConnectionHandle` this should prevent the database handle from being finalized before all statement handles have been finalized * fix(sqlite/test): make `concurrent_resets_dont_segfault` runtime-agnostic Co-authored-by: link2xt <[email protected]> Co-authored-by: Adam Cigánek <[email protected]>
* reference fetch_all() in query macros * add example for using transactions in postgres
* fix: wait until ready after executing other helper queries while pg quering is executing Signed-off-by: Atkins Chang <[email protected]> * fix: use tls parameter for testing target Signed-off-by: Atkins Chang <[email protected]>
When `clap_derive 3.0.0-beta.4` released, new invocations of `cargo install sqlx-cli` would try to compile that against `clap 3.0.0-beta.2` which caused some breakages. Until `clap 3.0.0` proper is released, we need to pin both versions to insure against potential breakages from automatic upgrades. closes #1378
* fix(pool): reenable connection reaper * fix warnings * chore: bump published crates to 0.5.6 * chore: update CHANGELOG.md for 0.5.6
…)` (#1393) refactor(pool): deprecate `PoolConnection::release()`, provide renamed alts
* test(mysql): add test case for pending rows and dropped transaction * fix(mysql): handle multiple waiting results correctly
* add explicit shutdown of sqlite statement worker in Connection::close() Signed-off-by: Andrew Whitehead <[email protected]> * test sqlite database close method Signed-off-by: Andrew Whitehead <[email protected]> * await worker shutdown after dropping SqliteConnection Signed-off-by: Andrew Whitehead <[email protected]> * restore explicit drop Signed-off-by: Andrew Whitehead <[email protected]>
* Fix SQLite encoding format * Update SQLite decoding format * Update sqlx-core/src/sqlite/types/chrono.rs * fixup: add `#[rustfmt::skip]` Co-authored-by: Austin Bonander <[email protected]> Co-authored-by: Austin Bonander <[email protected]>
Instructions on reverting migrations are missing from the README. Here are some that others may find helpful.
* preparing 0.5.8 release * fix warnings before release
* fix new warning about trailing semicolon in expression macros * fix(test): fix mismatched type error in MySQL type tests
* Add support for serialized threading mode * Typos * Fix build
deno_core currently uses `=1.6.2` for indexmap, and Cargo refuses to resolve a version with sqlx's requirement of 1.7.0. https://github.com/denoland/deno/blob/004d07dccd69c9fae8370665632d90401f770938/core/Cargo.toml#L18
* fix(postgres): allow rust_decimal::Decimal in PgRange * test(postgres): add tests for BigDecimal and Decimal in ranges
Thanks to @jplatte in the sqlx Discord for providing this solution.
…1475) * fix PgInterval convert failure for negative chrono::Duration * add unit tests for PgInterval * Fix: remove redundancy because nanosecond overflow implies microsecond overflow
* Encode/Decode impl for Cow<'_, str> resolves #1214 * --wip-- [skip ci] * Add Cow decode/encode to other databases and fix build
…e macro documentation (#1498)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.