You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Description
Implements consistent formatting for constraint expressions so something
like `value < 1000` is normalized to `value < 1000`
Also includes drive by improvements.
1. Test & Fix that Datafusion expressions can actually be used when
adding a constraint
2. Test & Fix that constraints can be added to column with
capitalization
# Related Issue(s)
- closes#1971
Currently when you write a constraint expr, the expr is not formatted on write, so you could end up with these expressions in the log:
'delta.constraints.value_gt_5': 'foo >0',
Maybe it's good if we format them before writing.
The text was updated successfully, but these errors were encountered: