Skip to content

Commit

Permalink
Fix name
Browse files Browse the repository at this point in the history
  • Loading branch information
philippemnoel committed Jan 7, 2025
1 parent 890adcf commit 61417ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
schema_name => 'public',
table_name => 'mock_items_paradedb_enterprise'
);
CREATE INDEX search_idx_paradedb_enterprise_ ON mock_items_paradedb_enterprise
CREATE INDEX search_idx_paradedb_enterprise ON mock_items_paradedb_enterprise
USING bm25 (id, description, category, rating, in_stock, created_at, metadata, weight_range)
WITH (key_field='id');
EOSQL
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ spec:
fi
SIZE_RESULT=$(psql "$DB_URI" -t) <<-EOSQL
SELECT pg_size_pretty(pg_relation_size('search_idx'));
SELECT pg_size_pretty(pg_relation_size('search_idx_paradedb_enterprise'));
EOSQL
echo -$SIZE_RESULT-
if [ "$SIZE_RESULT" != " 0 bytes" ]; then
Expand Down

0 comments on commit 61417ef

Please sign in to comment.