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
New Check: Column A < Column B Comparison (Numeric, Date, Timestamp)
Description
We should introduce a new check that validates whether the values in one column are strictly less than the values in another column. This is a common requirement for:
New Check: Column A < Column B Comparison (Numeric, Date, Timestamp)
Description
We should introduce a new check that validates whether the values in one column are strictly less than the values in another column. This is a common requirement for:
start_price < end_price
)pickup_time < dropoff_time
)order_date < shipping_date
)This check would enhance the expressiveness of the validation framework and support key business rules.
Example Usage
This configuration should raise an error for rows where
tpep_pickup_datetime >= tpep_dropoff_datetime
.Expected Behavior
NumericType
,DateType
, orTimestampType
Proposed API
Config Class
Check Logic
Benefits
The text was updated successfully, but these errors were encountered: