ibis icon indicating copy to clipboard operation
ibis copied to clipboard

feat: ibis mssql backend, add parameter for table_option

Open ruiyang2015 opened this issue 8 months ago • 2 comments

Is your feature request related to a problem?

for mssql backend, the current signature does not allow additional table options for ibis.mssql.create_table, for sql server/synapse, we will need additional table options when creating a table. like cluster data compression etc. the syntax is like this: create table foo (columns_def..) with ( <table options>)

What is the motivation behind your request?

so we can create a table with additional table level options, and those can not be done with an alter table command.

Describe the solution you'd like

for ibis.mssql.create_table(...., table_options: str) to allow additional table options during create table.

What version of ibis are you running?

9.1.0

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

Synapse

Code of Conduct

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

ruiyang2015 avatar Jun 24 '24 22:06 ruiyang2015