You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chdb.query(SQL, output_format="DataStore") should return a DataStore
UDF module-level API (already in chdb-core, never mirrored in chdb-ds):
chdb.create_function
chdb.drop_function
chdb.NullHandling / chdb.ExceptionHandling
chdb.func (from chdb.udf.func)
The UDF group does not exist in chdb-core release 26.3.0; the mirror must use hasattr guards so chdb-ds stays backward-compatible with older chdb-core releases.
chdb-ds's
chdb/__init__.pycurrently lacks two groups of top-level symbols that exist in chdb-core:DataStore output_format (paired with Support output_format="DataStore" in query / session / streaming APIs chdb-core#67 / Fix arrow jemalloc #68):
chdb.query(SQL, output_format="DataStore")should return aDataStoreUDF module-level API (already in chdb-core, never mirrored in chdb-ds):
chdb.create_functionchdb.drop_functionchdb.NullHandling/chdb.ExceptionHandlingchdb.func(fromchdb.udf.func)The UDF group does not exist in chdb-core release 26.3.0; the mirror must use
hasattrguards so chdb-ds stays backward-compatible with older chdb-core releases.