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:
Pere Diaz Bou 2025-06-16 13:58:42 +02:00
parent a69369a62d
commit 9ae4563bcd
10 changed files with 79 additions and 47 deletions

View 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