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?
Copyright © 2021 Jogjafile Inc.
It's not possible to do directly from
koalas.to_table, but you can useALTER TABLEstatement to add the constraint after you wrote the data (full docs):(for example, via
spark.sqlcommand)