Skip to content

Commit

Permalink
remove last fts test
Browse files Browse the repository at this point in the history
  • Loading branch information
lnkuiper committed Nov 13, 2024
1 parent 8c67d22 commit 51a71b0
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions test/optimizer/deliminator.test
Original file line number Diff line number Diff line change
Expand Up @@ -181,22 +181,3 @@ NULL 0
1 1
2 1
3 0

# FTS
require fts

require no_alternative_verify

statement ok
CREATE TABLE documents(id VARCHAR, body VARCHAR)

statement ok
INSERT INTO documents VALUES ('doc1', ' QUÁCKING+QUÁCKING+QUÁCKING'), ('doc2', ' BÁRKING+BÁRKING+BÁRKING+BÁRKING'), ('doc3', ' MÉOWING+MÉOWING+MÉOWING+MÉOWING+MÉOWING+999')

statement ok
PRAGMA create_fts_index('documents', 'id', 'body', overwrite=1)

query II
EXPLAIN SELECT score, id, body FROM (SELECT *, fts_main_documents.match_bm25(id, 'quacked barked') AS score FROM documents) sq WHERE score IS NOT NULL ORDER BY score DESC
----
logical_opt <!REGEX>:.*DELIM_JOIN.*

0 comments on commit 51a71b0

Please sign in to comment.