mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-18 00:54:19 +01:00
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.
9 lines
227 B
Bash
Executable File
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
|