feat: add pgvector full_text_search (#7396)

This commit is contained in:
Byeongjin Kang
2024-08-20 12:01:13 +09:00
committed by GitHub
parent 218380ba43
commit 0223fc6fd5
2 changed files with 21 additions and 6 deletions

View File

@@ -21,10 +21,6 @@ class PGVectorTest(AbstractVectorTest):
),
)
def search_by_full_text(self):
hits_by_full_text: list[Document] = self.vector.search_by_full_text(query=get_example_text())
assert len(hits_by_full_text) == 0
def test_pgvector(setup_mock_redis):
PGVectorTest().run_all_tests()