mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-18 00:54:19 +01: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:
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
|
||||
Reference in New Issue
Block a user