Files
turso/scripts/limbo-sqlite3-index-experimental
Pere Diaz Bou 9ae4563bcd 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.
2025-06-17 19:33:23 +02:00

9 lines
227 B
Bash
Executable File

#!/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