ibis icon indicating copy to clipboard operation
ibis copied to clipboard

bug: MSSQL create_table with pandas dataframe leaves a lot ibis_panda table around

Open ruiyang2015 opened this issue 8 months ago • 0 comments

What happened?

using following code:

c = ibis.mssql.connect(...)
df = pd.DataFrame.from_dict({'val': [1, 2, 3]})
c.create_table('t', df)
c.list_tables()

after the table creation, in addition to the table t being created, there is also a table with ibis_pandas_memtable_s2xlcq5anjg5tlyy5i5y4zan7q and not get cleaned up

What version of ibis are you using?

9.0.0

What backend(s) are you using, if any?

MSSQL

Relevant log output

no error logs, just check the tables after create_table calls

Code of Conduct

  • [X] I agree to follow this project's Code of Conduct

ruiyang2015 avatar Jun 29 '24 05:06 ruiyang2015