Skip to content

Commit

Permalink
revert db path change
Browse files Browse the repository at this point in the history
  • Loading branch information
WillAyd committed Jul 11, 2023
1 parent 367532c commit 8365570
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion c/driver/sqlite/sqlite_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ class SqliteQuirks : public adbc_validation::DriverQuirks {
AdbcStatusCode SetupDatabase(struct AdbcDatabase* database,
struct AdbcError* error) const override {
// Shared DB required for transaction tests
return AdbcDatabaseSetOption(database, "uri", "file:Sqlite_Transactions", error);
return AdbcDatabaseSetOption(
database, "uri", "file:Sqlite_Transactions?mode=memory&cache=shared", error);
}

AdbcStatusCode DropTable(struct AdbcConnection* connection, const std::string& name,
Expand Down

0 comments on commit 8365570

Please sign in to comment.