File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 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(
1111)
1212
1313add_definitions (
14- ${SQLITE_FLAGS}
1514 -DSQLITE_TEMP_STORE=2
15+ ${SQLITE_FLAGS}
1616)
1717
1818add_library (
Original file line number Diff line number Diff line change @@ -566,9 +566,6 @@ export function registerBaseTests() {
566566 // Execute the read test whenever a table change ocurred
567567 db . registerTablesChangedHook ( ( update ) => readTriggerCallbacks . forEach ( ( cb ) => cb ( ) ) ) ;
568568
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;' )
572569 const numberOfUsers = 100_000 ;
573570 await db . writeLock ( async ( tx ) => {
574571 await tx . execute ( 'BEGIN' ) ;
You can’t perform that action at this time.
0 commit comments