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
Copy file name to clipboardexpand all lines: docs/dqx/docs/reference.mdx
+2-2
Original file line number
Diff line number
Diff line change
@@ -21,8 +21,8 @@ The following quality rules / functions are currently available:
21
21
| value_is_in_list | Check if the provided value is present in the input column. | col_name: column name to check; allowed: list of allowed values |
22
22
| value_is_not_null_and_is_in_list | Check if provided value is present if the input column is not null | col_name: column name to check; allowed: list of allowed values |
23
23
| is_not_null_and_not_empty_array | Check if input array column is not null or empty | col_name: column name to check |
24
-
| is_in_range | Check if input column is in the provided range (inclusive of both boundaries) | col_name: column name to check; min_limit: min limit; max_limit: max limit |
25
-
| is_not_in_range | Check if input column is not within defined range (inclusive of both boundaries) | col_name: column name to check; min_limit: min limit value; max_limit: max limit value |
24
+
| is_in_range | Check if input column is in the provided range (inclusive of both boundaries) | col_name: column name to check; min_limit: min limit value or a column name; max_limit: max limit value or a column name|
25
+
| is_not_in_range | Check if input column is not within defined range (inclusive of both boundaries) | col_name: column name to check; min_limit: min limit value or a column name; max_limit: max limit value or a column name|
26
26
| not_less_than | Check if input column is not less than the provided limit | col_name: column name to check; limit: limit value |
27
27
| not_greater_than | Check if input column is not greater than the provided limit | col_name: column name to check; limit: limit value |
28
28
| is_valid_date | Check if input column is a valid date | col_name: column name to check; date_format: date format (e.g. 'yyyy-mm-dd') |
0 commit comments