when I create a Delta table I can set some columns to be NOT NULL
CREATE TABLE [db_name.]table_name
[(col_name1 col_type1 [NOT NULL], ...)]
USING DELTA
Is there any way to set non null columns with koalas.to_table
?
when I create a Delta table I can set some columns to be NOT NULL
CREATE TABLE [db_name.]table_name
[(col_name1 col_type1 [NOT NULL], ...)]
USING DELTA
Is there any way to set non null columns with koalas.to_table
?