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 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 " ,
Original file line number Diff line number Diff line change @@ -484,7 +484,7 @@ def get_create_query(self):
484484 )
485485 return '''
486486CREATE EXTENSION IF NOT EXISTS vector;
487- CREATE EXTENSION IF NOT EXISTS timescaledb_vector ;
487+ CREATE EXTENSION IF NOT EXISTS timescale_vector ;
488488
489489
490490CREATE 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 )
You can’t perform that action at this time.
0 commit comments