Skip to content

Commit 20a8ddc

Browse files
committed
Change extension name timescaledb_vector -> timescale_vector
1 parent 841fd48 commit 20a8ddc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

nbs/00_vector.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,7 @@
595595
" )\n",
596596
" return '''\n",
597597
"CREATE EXTENSION IF NOT EXISTS vector;\n",
598-
"CREATE EXTENSION IF NOT EXISTS timescaledb_vector;\n",
598+
"CREATE EXTENSION IF NOT EXISTS timescale_vector;\n",
599599
"\n",
600600
"\n",
601601
"CREATE TABLE IF NOT EXISTS {table_name} (\n",

timescale_vector/client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ def get_create_query(self):
484484
)
485485
return '''
486486
CREATE EXTENSION IF NOT EXISTS vector;
487-
CREATE EXTENSION IF NOT EXISTS timescaledb_vector;
487+
CREATE EXTENSION IF NOT EXISTS timescale_vector;
488488
489489
490490
CREATE TABLE IF NOT EXISTS {table_name} (
@@ -611,8 +611,8 @@ def search_query(
611611
where_clauses.append(where_predicates)
612612

613613
if uuid_time_filter is not None:
614-
if self.time_partition_interval is None:
615-
raise ValueError("""uuid_time_filter is only supported when time_partitioning is enabled.""")
614+
#if self.time_partition_interval is None:
615+
#raise ValueError("""uuid_time_filter is only supported when time_partitioning is enabled.""")
616616

617617
(where_time, params) = uuid_time_filter.build_query(params)
618618
where_clauses.append(where_time)

0 commit comments

Comments
 (0)