Skip to content

Commit

Permalink
FTS5 is supported with embedded version
Browse files Browse the repository at this point in the history
  • Loading branch information
ospfranco committed Dec 22, 2024
1 parent 7d3fa2b commit 162dbfc
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1785,7 +1785,7 @@ SPEC CHECKSUMS:
GCDWebServer: 2c156a56c8226e2d5c0c3f208a3621ccffbe3ce4
glog: 08b301085f15bcbb6ff8632a8ebaf239aae04e6a
hermes-engine: 06a9c6900587420b90accc394199527c64259db4
op-sqlite: 44cfb0a8e1f57e95319a1d168271da059b4d7e98
op-sqlite: 18bbfafda921a0a8443741a65fcabd291106156d
RCT-Folly: bf5c0376ffe4dd2cf438dcf86db385df9fdce648
RCTDeprecation: fb7d408617e25d7f537940000d766d60149c5fea
RCTRequired: 9aaf0ffcc1f41f0c671af863970ef25c422a9920
Expand Down
2 changes: 1 addition & 1 deletion example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"performanceMode": true,
"iosSqlite": true,
"crsqlite": false,
"fts5": false,
"fts5": true,
"rtree": false,
"sqliteVec": false,
"tokenizers": [
Expand Down
4 changes: 0 additions & 4 deletions op-sqlite.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,6 @@ if phone_version then
raise "CRSQLite is not supported with phone version"
end

if fts5 then
raise "FTS5 is not supported with phone version"
end

if rtree then
raise "RTree is not supported with phone version"
end
Expand Down
2 changes: 1 addition & 1 deletion scripts/turnOnIOSEmbedded.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ packageJson['op-sqlite']['crsqlite'] = false;
packageJson['op-sqlite']['libsql'] = false;
packageJson['op-sqlite']['sqliteVec'] = false;
packageJson['op-sqlite']['rtree'] = false;
packageJson['op-sqlite']['fts5'] = false;
packageJson['op-sqlite']['fts5'] = true;

// Save the updated package.json file
fs.writeFileSync(
Expand Down

0 comments on commit 162dbfc

Please sign in to comment.