Skip to content

Commit

Permalink
fix: return error instead of panicking in release_savepoint
Browse files Browse the repository at this point in the history
  • Loading branch information
LucianBuzzo committed Jan 9, 2025
1 parent c454efc commit 1cadd66
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions quaint/src/connector/transaction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,9 @@ impl Transaction for DefaultTransaction<'_> {
let depth_val = self.depth.load(Ordering::Relaxed);

if depth_val == 0 {
panic!(
"No savepoint to release in transaction, make sure to call create_savepoint before release_savepoint"
);
return Err(crate::Error::new(

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / test

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroach_22_1_0

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres13

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroach_22_2

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres11

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql_mariadb

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / test (postgres16, false, postgres, 16)

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres10

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres15

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres16

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mongodb42

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mssql_2022

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mongodb5

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mssql_2019

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / sqlite

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres12

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres14

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mssql_2017

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroach_23_1

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / vitess_8_0

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql_5_6

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / run

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mongodb44

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql_5_7

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql_8

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres9

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / schema-engine-cli on ubuntu-latest

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / tests (--lib --features=all-native)

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / React Native / Android build for commit 4bce40314bad6e6318409ef539a51e288a90e8b7

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / query-engine-node-api on ubuntu-latest

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / query-engine on ubuntu-latest

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / clippy linting

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / query-engine-node-api on windows-latest

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / sqlite / json query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / sqlite / json query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / sqlite / json query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / sqlite / json query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / sqlite / graphql query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / sqlite / graphql query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / sqlite / graphql query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / sqlite / graphql query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql mariadb / json query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql mariadb / json query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql mariadb / json query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql mariadb / graphql query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql mariadb / graphql query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 10 / graphql join 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql mariadb / graphql query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 10 / graphql join 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 10 / json join 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 10 / graphql query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 10 / json query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 10 / json query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 10 / json join 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 10 / graphql query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql mariadb / json query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 10 / graphql query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 10 / json query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 10 / json query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 5.6 / json query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 11 / json join 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 10 / graphql query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 5.6 / graphql query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 10 / json join 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 10 / json join 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 5.6 / json query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 11 / graphql query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 5.6 / json query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 11 / graphql join 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / query-engine on macos-13

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 11 / json query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 11 / json query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 11 / json query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 11 / json join 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 11 / graphql query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 12 / graphql join 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 12 / graphql join 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 5.6 / graphql query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 12 / graphql join 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 12 / json join 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 11 / json query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 12 / graphql query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 12 / json join 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 11 / graphql query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 12 / json join 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 12 / graphql query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 12 / graphql query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 11 / json join 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 12 / json join 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 12 / graphql query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 12 / graphql join 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 11 / graphql join 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 12 / json query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 13 / graphql join 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 5.7 / graphql query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 5.6 / json query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 13 / graphql join 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 13 / graphql join 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 13 / graphql query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 12 / json query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 13 / graphql query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 5.6 / graphql query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 13 / json join 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / query-engine-node-api on macos-13

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 10 / graphql join 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 13 / json join 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 13 / json join 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 11 / json join 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 13 / graphql join 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 8 / graphql join 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 8 / json query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 13 / json query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 13 / graphql query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 13 / json query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 13 / graphql query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 8 / json query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 8 / graphql query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 8 / json query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 5.7 / graphql query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 8 / json join 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 8 / json join 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 8 / graphql query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 8 / graphql query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 14 / graphql join 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 8 / json query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 5.7 / json query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 14 / graphql join 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 8 / json join 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 14 / graphql query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 14 / graphql query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 5.7 / graphql query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 5.7 / json query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 14 / graphql query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 8 / graphql query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 14 / graphql join 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 5.7 / json query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.1 / graphql join 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 14 / json query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 8 / graphql join 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 8 / json join 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 12 / json query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 8 / graphql join 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql mariadb / graphql query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.1 / graphql join 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 13 / json query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 14 / graphql join 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 5.7 / json query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 8 / graphql join 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 14 / json join 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.1 / json join 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.1 / graphql query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.1 / graphql query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.1 / json join 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 11 / graphql join 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 14 / json join 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.1 / json query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.2 / graphql join 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.2 / graphql join 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.2 / graphql join 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 14 / json join 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.2 / graphql query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.2 / json query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / schema-engine-cli on macos-13

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.1 / graphql join 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.2 / graphql join 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 23.1 / graphql join 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 14 / json join 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 14 / graphql query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.1 / graphql query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.2 / json query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.1 / graphql query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.2 / graphql query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.1 / graphql join 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 23.1 / graphql query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 23.1 / json join 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 14 / json query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.1 / json join 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 23.1 / graphql join 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.1 / json join 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 23.1 / graphql join 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.1 / json query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.2 / json join 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.2 / graphql query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.2 / json join 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 15 / graphql join 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 23.1 / json join 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 15 / graphql query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 10 / graphql join 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 15 / graphql join 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.2 / json query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.2 / json query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 11 / graphql query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 23.1 / json query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 15 / graphql query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 11 / graphql join 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 15 / graphql query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 23.1 / json query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.2 / graphql query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 23.1 / json query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 23.1 / json query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 23.1 / graphql query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 15 / json join 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 23.1 / json join 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 23.1 / graphql join 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.1 / json query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 15 / graphql join 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 15 / json query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 5.6 / graphql query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 23.1 / graphql query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.2 / json join 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 15 / graphql query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.2 / json join 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 16 / graphql join 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 16 / json join 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 16 / graphql query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 15 / json query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 16 / json query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 15 / json query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 16 / json query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 15 / json join 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 9 / graphql join 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 9 / graphql join 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 13 / json query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 9 / json join 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 15 / json query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql 5.7 / graphql query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 16 / json join 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 16 / graphql query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 9 / json join 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 9 / graphql query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 9 / graphql query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 16 / graphql join 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mongodb 4.2 / graphql query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 9 / json query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 16 / json query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 9 / graphql query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 16 / json query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mongodb 4.2 / graphql query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 12 / json query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mongodb 4.2 / json query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 16 / graphql query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 9 / graphql join 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mongodb 4.4 / graphql query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mongodb 4.2 / json query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 14 / json query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 9 / graphql query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 16 / graphql join 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 16 / json join 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 9 / json join 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 22.1 / json query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 9 / json query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mongodb 4.2 / json query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 9 / json query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mongodb 4.2 / json query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mongodb 4.4 / graphql query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mongodb 4.2 / graphql query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 14 / json query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mongodb 4.4 / json query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mongodb 5 / graphql query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 13 / json join 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 23.1 / json join 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / schema-engine-cli on windows-latest

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mongodb 4.2 / graphql query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mongodb 5 / json query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mongodb 5 / graphql query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mongodb 4.4 / graphql query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mongodb 4.4 / json query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mongodb 5 / json query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mssql 2017 / graphql query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mongodb 4.4 / json query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mongodb 5 / json query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mongodb 5 / graphql query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mssql 2017 / graphql query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mssql 2017 / json query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mssql 2017 / graphql query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 15 / json join 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 15 / graphql join 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 15 / json join 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mssql 2017 / json query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / query-engine on windows-latest

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mssql 2017 / json query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mssql 2022 / json query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 16 / graphql query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mssql 2022 / graphql query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 16 / graphql join 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mssql 2017 / json query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mssql 2017 / graphql query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mongodb 4.4 / graphql query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mssql 2022 / graphql query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 9 / json query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mssql 2019 / graphql query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mssql 2019 / graphql query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mssql 2019 / json query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mssql 2022 / json query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 9 / graphql join 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mssql 2019 / json query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / cockroachdb 23.1 / graphql query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mssql 2019 / json query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mssql 2022 / graphql query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mssql 2022 / json query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mariadb on Windows

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 9 / json join 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / postgres 16 / json join 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mssql 2022 / json query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mongodb 5 / graphql query 3/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mongodb 4.4 / json query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mssql 2022 / graphql query 4/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mssql 2019 / graphql query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mongodb 5 / json query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mssql 2019 / json query 1/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mssql 2019 / graphql query 2/4

failed to resolve: could not find `Error` in the crate root

Check failure on line 180 in quaint/src/connector/transaction.rs

View workflow job for this annotation

GitHub Actions / mysql-lts on Windows

failed to resolve: could not find `Error` in the crate root
"No savepoint to release in transaction, make sure to call create_savepoint before release_savepoint",
));
}

// Perform the asynchronous operation without holding the lock
Expand Down

0 comments on commit 1cadd66

Please sign in to comment.