Disable SQLite journal
The SQLite journal is not needed since the databases are created in-memory and are thread-specific.
This commit is contained in:
parent
37139dfe69
commit
18f51eba79
@ -58,7 +58,7 @@ static const char databases_create_sql[] =
|
||||
"CREATE TABLE IF NOT EXISTS " MYSQLAUTH_DATABASES_TABLE_NAME "(db varchar(255))";
|
||||
|
||||
/** PRAGMA configuration options for SQLite */
|
||||
static const char pragma_sql[] = "PRAGMA JOURNAL_MODE=MEMORY";
|
||||
static const char pragma_sql[] = "PRAGMA JOURNAL_MODE=NONE";
|
||||
|
||||
/** Query that checks if there's a grant for the user being authenticated */
|
||||
static const char mysqlauth_validate_user_query[] =
|
||||
|
Loading…
x
Reference in New Issue
Block a user