Skip to content

Commit

Permalink
[PLUGINS] Bump Version [snowflake]
Browse files Browse the repository at this point in the history
  • Loading branch information
blythed committed Jan 29, 2025
1 parent dfbb5cc commit b935697
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/snowflake/superduper_snowflake/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from .vector_search import SnowflakeVectorSearcher as VectorSearcher
from .data_backend import SnowflakeDataBackend as DataBackend

__version__ = "0.5.11"
__version__ = "0.5.12"

__all__ = [
"VectorSearcher",
Expand Down
2 changes: 1 addition & 1 deletion plugins/snowflake/superduper_snowflake/data_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def _do_connection_callback(uri):
def _connection_callback(self, uri):
if uri != 'snowflake://':
return IbisDataBackend._connection_callback(uri)
return ibis.snowflake.from_connection(self._do_connection_callback(uri)), 'snowflake', False
return ibis.snowflake.from_connection(self._do_connection_callback(uri), create_object_udfs=False), 'snowflake', False

def insert(self, table_name, raw_documents):
ibis_schema = self.conn.table(table_name).schema()
Expand Down

0 comments on commit b935697

Please sign in to comment.