forked from mirror/go-sqlite3
Set SQLITE_DETERMINISTIC if undefined
This commit is contained in:
parent
467f50b0c0
commit
3ebb821e65
|
@ -29,6 +29,10 @@ package sqlite3
|
|||
# define SQLITE_OPEN_FULLMUTEX 0
|
||||
#endif
|
||||
|
||||
#ifndef SQLITE_DETERMINISTIC
|
||||
# define SQLITE_DETERMINISTIC 0
|
||||
#endif
|
||||
|
||||
static int
|
||||
_sqlite3_open_v2(const char *filename, sqlite3 **ppDb, int flags, const char *zVfs) {
|
||||
#ifdef SQLITE_OPEN_URI
|
||||
|
|
Loading…
Reference in New Issue