1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Add missing mutex calls around a call to sqlite3SchemaGet() within sqlite3_open().

FossilOrigin-Name: 45415899545767888d36dcc0bafaf0ef415d94c2
This commit is contained in:
dan
2014-12-08 20:20:16 +00:00
parent b88c7b550c
commit 0235a0331f
5 changed files with 91 additions and 10 deletions

View File

@ -1394,7 +1394,10 @@ static void dynamic_triggers(int nMs){
print_and_free_err(&err);
}
#include "tt3_checkpoint.c"
#include "tt3_index.c"
int main(int argc, char **argv){
struct ThreadTest {
@ -1414,6 +1417,8 @@ int main(int argc, char **argv){
{ checkpoint_starvation_1, "checkpoint_starvation_1", 10000 },
{ checkpoint_starvation_2, "checkpoint_starvation_2", 10000 },
{ create_drop_index_1, "create_drop_index_1", 10000 },
};
int i;