From 61417eff046c232836630c216cfe4857049dd4e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20No=C3=ABl?= Date: Tue, 7 Jan 2025 17:31:42 -0500 Subject: [PATCH] Fix name --- charts/paradedb/test/paradedb-enterprise/02-paradedb_test.yaml | 2 +- .../test/paradedb-enterprise/03-paradedb_replication_test.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/paradedb/test/paradedb-enterprise/02-paradedb_test.yaml b/charts/paradedb/test/paradedb-enterprise/02-paradedb_test.yaml index bf39d4185..575f99775 100644 --- a/charts/paradedb/test/paradedb-enterprise/02-paradedb_test.yaml +++ b/charts/paradedb/test/paradedb-enterprise/02-paradedb_test.yaml @@ -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 diff --git a/charts/paradedb/test/paradedb-enterprise/03-paradedb_replication_test.yaml b/charts/paradedb/test/paradedb-enterprise/03-paradedb_replication_test.yaml index ed0bd70cc..f11471e86 100644 --- a/charts/paradedb/test/paradedb-enterprise/03-paradedb_replication_test.yaml +++ b/charts/paradedb/test/paradedb-enterprise/03-paradedb_replication_test.yaml @@ -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