mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-04 18:18:03 +00:00
index_experimental
flag to enable index usages
Currently indexes are the bulk of the problem with `UPDATE` and `DELETE`, while we work on fixing those it makes sense to disable indexing since they are not stable. We want to try to make everything else stable before we continue with indexing.
This commit is contained in:
parent
a69369a62d
commit
9ae4563bcd
10 changed files with 79 additions and 47 deletions
8
scripts/limbo-sqlite3-index-experimental
Executable file
8
scripts/limbo-sqlite3-index-experimental
Executable file
|
@ -0,0 +1,8 @@
|
|||
#!/bin/bash
|
||||
|
||||
# if RUST_LOG is non-empty, enable tracing output
|
||||
if [ -n "$RUST_LOG" ]; then
|
||||
target/debug/limbo_index_experimental -m list -t testing/test.log "$@"
|
||||
else
|
||||
target/debug/limbo_index_experimental -m list "$@"
|
||||
fi
|
Loading…
Add table
Add a link
Reference in a new issue