File tree 3 files changed +6
-4
lines changed
3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' @journeyapps/react-native-quick-sqlite ' : patch
3
+ ---
4
+
5
+ Fixed order of makefile flags
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ include_directories(
11
11
)
12
12
13
13
add_definitions (
14
- ${SQLITE_FLAGS}
15
14
-DSQLITE_TEMP_STORE=2
15
+ ${SQLITE_FLAGS}
16
16
)
17
17
18
18
add_library (
Original file line number Diff line number Diff line change @@ -566,9 +566,6 @@ export function registerBaseTests() {
566
566
// Execute the read test whenever a table change ocurred
567
567
db . registerTablesChangedHook ( ( update ) => readTriggerCallbacks . forEach ( ( cb ) => cb ( ) ) ) ;
568
568
569
- // Needed for large volumes of data on older Android devices
570
- // https://github.com/margelo/react-native-quick-sqlite/pull/25
571
- await db . execute ( 'PRAGMA temp_store = memory;' )
572
569
const numberOfUsers = 100_000 ;
573
570
await db . writeLock ( async ( tx ) => {
574
571
await tx . execute ( 'BEGIN' ) ;
You can’t perform that action at this time.
0 commit comments