File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 595
595
" )\n " ,
596
596
" return '''\n " ,
597
597
" 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 " ,
599
599
" \n " ,
600
600
" \n " ,
601
601
" CREATE TABLE IF NOT EXISTS {table_name} (\n " ,
Original file line number Diff line number Diff line change @@ -484,7 +484,7 @@ def get_create_query(self):
484
484
)
485
485
return '''
486
486
CREATE EXTENSION IF NOT EXISTS vector;
487
- CREATE EXTENSION IF NOT EXISTS timescaledb_vector ;
487
+ CREATE EXTENSION IF NOT EXISTS timescale_vector ;
488
488
489
489
490
490
CREATE TABLE IF NOT EXISTS {table_name} (
@@ -611,8 +611,8 @@ def search_query(
611
611
where_clauses .append (where_predicates )
612
612
613
613
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.""")
616
616
617
617
(where_time , params ) = uuid_time_filter .build_query (params )
618
618
where_clauses .append (where_time )
You can’t perform that action at this time.
0 commit comments