We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6342ea1 commit 1134354Copy full SHA for 1134354
sqlmesh/core/schema_diff.py
@@ -282,9 +282,13 @@ def column_position_node(self) -> t.Optional[exp.ColumnPosition]:
282
283
284
class NestedSupport(str, Enum):
285
+ # Supports all nested data type operations
286
ALL = "ALL"
287
+ # Does not support any nested data type operations
288
NONE = "NONE"
289
+ # Supports nested data type operations except for those that require dropping a nested field
290
ALL_BUT_DROP = "ALL_BUT_DROP"
291
+ # Ignores all nested data type operations
292
IGNORE = "IGNORE"
293
294
@property
0 commit comments