This commit is contained in:
Nuno Cruces
2024-07-02 15:42:20 +01:00
parent c0b289d000
commit 90f7e502be
2 changed files with 3 additions and 1 deletions

View File

@@ -262,8 +262,8 @@ func (b *bloom) Open() (sqlite3.VTabCursor, error) {
type cursor struct {
*bloom
eof bool
arg *sqlite3.Value
eof bool
}
func (c *cursor) Filter(idxNum int, idxStr string, arg ...sqlite3.Value) error {

View File

@@ -74,6 +74,8 @@ func initFlags() {
// keep test flags
os.Args[i] = arg
i++
case arg == "--":
// ignore this
default:
// collect everything else
options = append(options, arg)