File tree Expand file tree Collapse file tree
sqlmesh/core/engine_adapter
tests/core/engine_adapter Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -160,8 +160,8 @@ def alter_table(
160160 ) -> None :
161161 """
162162 Disables ALTER TABLE for Fabric since it has limited support.
163- By making this a no-op, we signal to the caller to fall back
164- to a more reliable drop-and-recreate strategy to apply schema changes.
163+ By making this a no-op, we signal to the caller to fall back to a
164+ more reliable drop/add strategy for columns to apply schema changes.
165165 """
166166 return
167167
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ def test_alter_table_is_noop(adapter: FabricEngineAdapter):
9595 Tests that alter_table is a no-op for Fabric.
9696
9797 The adapter should not execute any SQL, signaling to the caller
98- that it should use the fallback strategy (like drop/add)
98+ that it should use the fallback strategy (drop/add)
9999 to apply schema changes.
100100 """
101101 alter_expression = exp .Alter (
You can’t perform that action at this time.
0 commit comments