Skip to content

Commit

Permalink
Skip FTS test, currently failing in the non-loadable extension version
Browse files Browse the repository at this point in the history
  • Loading branch information
carlopi committed Jan 22, 2025
1 parent ec8c789 commit 8cb434f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/duckdb-wasm/test/fts.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ export function testFTS(db: () => duckdb.DuckDBBindings): void {
await conn.query(
"INSERT INTO documents VALUES ('doc1', 'The mallard is a dabbling duck that breeds throughout the temperate.','Hannes Mühleisen', 3), ('doc2', 'The cat is a domestic species of small carnivorous mammal.', 'Laurens Kuiper', 2);",
);
// Skip for now, not supported in the no-extension version
return;
await conn.query("PRAGMA create_fts_index('documents', 'document_identifier', 'text_content', 'author');");
const result = conn.query(
'SELECT document_identifier, score\n' +
Expand Down

0 comments on commit 8cb434f

Please sign in to comment.