Skip to content

Commit fa0fdc6

Browse files
committed
cosmetics on descriptions
1 parent 445c775 commit fa0fdc6

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

sqlmesh/core/engine_adapter/fabric.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

tests/core/engine_adapter/test_fabric.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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(

0 commit comments

Comments
 (0)