Skip to content

Commit 1134354

Browse files
committed
feedback
1 parent 6342ea1 commit 1134354

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

sqlmesh/core/schema_diff.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,9 +282,13 @@ def column_position_node(self) -> t.Optional[exp.ColumnPosition]:
282282

283283

284284
class NestedSupport(str, Enum):
285+
# Supports all nested data type operations
285286
ALL = "ALL"
287+
# Does not support any nested data type operations
286288
NONE = "NONE"
289+
# Supports nested data type operations except for those that require dropping a nested field
287290
ALL_BUT_DROP = "ALL_BUT_DROP"
291+
# Ignores all nested data type operations
288292
IGNORE = "IGNORE"
289293

290294
@property

0 commit comments

Comments
 (0)