breaking change - #235
Conversation
Review:
|
| ) | ||
|
|
||
| select * from renamed | ||
| select * from named |
There was a problem hiding this comment.
CTE reference typo: named does not exist — the CTE above is called renamed. This will cause a compile error and break all 9 downstream models.
| select | ||
| id as order_id, | ||
| user_id as customer_id, | ||
| user_id as client_id, |
There was a problem hiding this comment.
customer_id renamed to client_id but 5 downstream columns across orders, returned_orders, artificial_anomaly, date_based_anomaly, and forced_anomaly still reference customer_id. Update all consumers or this rename will silently break them.
No description provided.