-
-
Notifications
You must be signed in to change notification settings - Fork 81
Modify delete to not take any params #405
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
a8bd0f4
Modify delete to not take any params
ospfranco 5a06e50
Various fixes
ospfranco 5e3523e
Fix
ospfranco c1dafcc
Empty flush_pending_reactive_queries for turso
ospfranco 9115e76
Make reactive queries tests deterministic
ospfranco 14f4d22
Make other reactive test deterministic
ospfranco File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,71 +1,71 @@ | ||
| { | ||
| "name": "op_sqlite_example", | ||
| "version": "0.0.1", | ||
| "private": true, | ||
| "scripts": { | ||
| "android": "react-native run-android", | ||
| "ios": "react-native run-ios --scheme='debug' --simulator='iPhone 16 Pro'", | ||
| "run:ios:unused": "xcodebuild -workspace ios/OPSQLiteExample.xcworkspace -scheme release -configuration Release -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 16 Pro' clean build", | ||
| "run:ios:release": "react-native run-ios --scheme='release' --no-packager", | ||
| "postinstall": "patch-package", | ||
| "start": "react-native start", | ||
| "pods": "cd ios && bundle exec pod install && rm -f .xcode.env.local", | ||
| "pods:nuke": "cd ios && rm -rf Pods && rm -rf Podfile.lock && bundle exec pod install", | ||
| "run:android:release": "cd android && ./gradlew assembleRelease && adb install -r app/build/outputs/apk/release/app-release.apk && adb shell am start -n com.op.sqlite.example/.MainActivity", | ||
| "build:android": "cd android && ./gradlew assembleDebug --no-daemon --console=plain -PreactNativeArchitectures=arm64-v8a", | ||
| "build:ios": "cd ios && xcodebuild -workspace OPSQLiteExample.xcworkspace -scheme debug -configuration Debug -sdk iphonesimulator CC=clang CPLUSPLUS=clang++ LD=clang LDPLUSPLUS=clang++ GCC_OPTIMIZATION_LEVEL=0 GCC_PRECOMPILE_PREFIX_HEADER=YES ASSETCATALOG_COMPILER_OPTIMIZATION=time DEBUG_INFORMATION_FORMAT=dwarf COMPILER_INDEX_STORE_ENABLE=NO", | ||
| "web": "vite", | ||
| "web:build": "vite build", | ||
| "web:preview": "vite preview" | ||
| }, | ||
| "dependencies": { | ||
| "@op-engineering/op-test": "0.2.7", | ||
| "@sqlite.org/sqlite-wasm": "^3.51.2-build8", | ||
| "chance": "^1.1.9", | ||
| "clsx": "^2.0.0", | ||
| "events": "^3.3.0", | ||
| "react": "19.1.1", | ||
| "react-dom": "19.1.1", | ||
| "react-native": "0.82.1", | ||
| "react-native-safe-area-context": "^5.6.2", | ||
| "react-native-web": "^0.21.2" | ||
| }, | ||
| "devDependencies": { | ||
| "@babel/core": "^7.25.2", | ||
| "@babel/preset-env": "^7.25.3", | ||
| "@babel/runtime": "^7.25.0", | ||
| "@react-native-community/cli": "^18.0.0", | ||
| "@react-native-community/cli-platform-android": "18.0.0", | ||
| "@react-native-community/cli-platform-ios": "18.0.0", | ||
| "@react-native/babel-preset": "0.82.1", | ||
| "@react-native/metro-config": "0.82.1", | ||
| "@react-native/typescript-config": "0.81.5", | ||
| "@types/chance": "^1.1.7", | ||
| "@types/react": "^19.1.1", | ||
| "@vitejs/plugin-react": "^5.1.0", | ||
| "patch-package": "^8.0.1", | ||
| "react-native-builder-bob": "^0.40.13", | ||
| "react-native-monorepo-config": "^0.1.9", | ||
| "react-native-restart": "^0.0.27", | ||
| "tailwindcss": "3.3.2", | ||
| "vite": "^7.1.9" | ||
| }, | ||
| "engines": { | ||
| "node": ">=18" | ||
| }, | ||
| "op-sqlite": { | ||
| "libsql": false, | ||
| "turso": false, | ||
| "sqlcipher": false, | ||
| "iosSqlite": false, | ||
| "fts5": true, | ||
| "rtree": true, | ||
| "crsqlite": false, | ||
| "sqliteVec": false, | ||
| "performanceMode": true, | ||
| "tokenizers": [ | ||
| "wordtokenizer", | ||
| "porter" | ||
| ] | ||
| } | ||
| } | ||
| "name": "op_sqlite_example", | ||
| "version": "0.0.1", | ||
| "private": true, | ||
| "scripts": { | ||
| "android": "react-native run-android", | ||
| "ios": "react-native run-ios --scheme='debug' --simulator='iPhone 16 Pro'", | ||
| "run:ios:unused": "xcodebuild -workspace ios/OPSQLiteExample.xcworkspace -scheme release -configuration Release -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 16 Pro' clean build", | ||
| "run:ios:release": "react-native run-ios --scheme='release' --no-packager", | ||
| "postinstall": "patch-package", | ||
| "start": "react-native start", | ||
| "pods": "cd ios && bundle exec pod install && rm -f .xcode.env.local", | ||
| "pods:nuke": "cd ios && rm -rf Pods && rm -rf Podfile.lock && bundle exec pod install", | ||
| "run:android:release": "cd android && ./gradlew assembleRelease && adb install -r app/build/outputs/apk/release/app-release.apk && adb shell am start -n com.op.sqlite.example/.MainActivity", | ||
| "build:android": "cd android && ./gradlew assembleDebug --no-daemon --console=plain -PreactNativeArchitectures=arm64-v8a", | ||
| "build:ios": "cd ios && xcodebuild -workspace OPSQLiteExample.xcworkspace -scheme debug -configuration Debug -sdk iphonesimulator CC=clang CPLUSPLUS=clang++ LD=clang LDPLUSPLUS=clang++ GCC_OPTIMIZATION_LEVEL=0 GCC_PRECOMPILE_PREFIX_HEADER=YES ASSETCATALOG_COMPILER_OPTIMIZATION=time DEBUG_INFORMATION_FORMAT=dwarf COMPILER_INDEX_STORE_ENABLE=NO", | ||
| "web": "vite", | ||
| "web:build": "vite build", | ||
| "web:preview": "vite preview" | ||
| }, | ||
| "dependencies": { | ||
| "@op-engineering/op-test": "0.2.7", | ||
| "@sqlite.org/sqlite-wasm": "^3.51.2-build8", | ||
| "chance": "^1.1.9", | ||
| "clsx": "^2.0.0", | ||
| "events": "^3.3.0", | ||
| "react": "19.1.1", | ||
| "react-dom": "19.1.1", | ||
| "react-native": "0.82.1", | ||
| "react-native-safe-area-context": "^5.6.2", | ||
| "react-native-web": "^0.21.2" | ||
| }, | ||
| "devDependencies": { | ||
| "@babel/core": "^7.25.2", | ||
| "@babel/preset-env": "^7.25.3", | ||
| "@babel/runtime": "^7.25.0", | ||
| "@react-native-community/cli": "^18.0.0", | ||
| "@react-native-community/cli-platform-android": "18.0.0", | ||
| "@react-native-community/cli-platform-ios": "18.0.0", | ||
| "@react-native/babel-preset": "0.82.1", | ||
| "@react-native/metro-config": "0.82.1", | ||
| "@react-native/typescript-config": "0.81.5", | ||
| "@types/chance": "^1.1.7", | ||
| "@types/react": "^19.1.1", | ||
| "@vitejs/plugin-react": "^5.1.0", | ||
| "patch-package": "^8.0.1", | ||
| "react-native-builder-bob": "^0.40.13", | ||
| "react-native-monorepo-config": "^0.1.9", | ||
| "react-native-restart": "^0.0.27", | ||
| "tailwindcss": "3.3.2", | ||
| "vite": "^7.1.9" | ||
| }, | ||
| "engines": { | ||
| "node": ">=18" | ||
| }, | ||
| "op-sqlite": { | ||
| "libsql": false, | ||
| "turso": false, | ||
| "sqlcipher": false, | ||
| "iosSqlite": false, | ||
| "fts5": true, | ||
| "rtree": true, | ||
| "crsqlite": false, | ||
| "sqliteVec": false, | ||
| "performanceMode": true, | ||
| "tokenizers": [ | ||
| "wordtokenizer", | ||
| "porter" | ||
| ] | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.