Skip to content

Commit 932f130

Browse files
Update plpgsql_bm25.sql
1 parent 8fb2461 commit 932f130

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plpgsql_bm25.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
88
Example usage:
99
SELECT bm25createindex( tablename, columnname ); /* tablename and columnname are TEXT types */
10-
SELECT * FROM bm25topk( tablename, columnname, question, k ); /* question is TEXT, k is INTGEGER */
10+
SELECT * FROM bm25topk( tablename, columnname, question, k ); /* question is TEXT, k is INTEGER */
1111

1212
Please note: bm25createindex will (re)create new tables <tablename>_bm25i_docs and <tablename>_bm25i_words,
1313
document results will come from <tablename>_bm25i_docs, not the original <tablename>. The algorithm can't

0 commit comments

Comments
 (0)