[BUG]: Missing TBLPROPERTIES in DDL Statements for Columns with Default Values #1384
Open
1 task done
Labels
bug
Something isn't working
Is there an existing issue for this?
Category of Bug / Issue
Other
Current Behavior
If a column has a default value, the TBLPROPERTIES should be included as part of the DDL statement. However, they are currently not being generated as part of DDL output.
EX:
Current output:
CREATE TABLE tbl1 (
col1 STRING NOT NULL DEFAULT ' '
)
Expected output:
CREATE TABLE tabl1 (
col1 STRING NOT NULL DEFAULT ' '
)
TBLPROPERTIES (
'delta.feature.allowColumnDefaults' = 'supported'
)
Expected Behavior
No response
Steps To Reproduce
No response
Relevant log output or Exception details
No response
Sample Query
No response
Operating System
macOS
Version
latest via Databricks CLI
The text was updated successfully, but these errors were encountered: