Skip to content

Commit

Permalink
modify crud test
Browse files Browse the repository at this point in the history
  • Loading branch information
swetavooda committed Apr 12, 2024
1 parent 29138aa commit 02c404f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/expected/pinecone_crud.out
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
-- SETUP
-- suppress output
\o /dev/null
\o /dev/null
delete from pinecone_mock;
-- logging level
SET client_min_messages = 'notice';
-- flush each vector individually
SET pinecone.vectors_per_request = 1;
SET pinecone.requests_per_batch = 1;
SET pinecone.max_buffer_scan = 1000;
-- disable flat scan to force use of the index
SET enable_seqscan = off;
-- Testing database is responsible for initializing the mock table with
Expand Down
3 changes: 3 additions & 0 deletions test/sql/pinecone_crud.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@
-- suppress output
\o /dev/null
-- logging level
\o /dev/null
delete from pinecone_mock;
SET client_min_messages = 'notice';
-- flush each vector individually
SET pinecone.vectors_per_request = 1;
SET pinecone.requests_per_batch = 1;
SET pinecone.max_buffer_scan = 1000;
-- disable flat scan to force use of the index
SET enable_seqscan = off;
-- Testing database is responsible for initializing the mock table with
Expand Down

0 comments on commit 02c404f

Please sign in to comment.