Skip to content

Commit 5734785

Browse files
Update documentation for the functions
1 parent ca3c293 commit 5734785

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/dqx/docs/reference.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ The following quality rules / functions are currently available:
2121
| 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 |
2222
| 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 |
2323
| 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 |
2626
| not_less_than | Check if input column is not less than the provided limit | col_name: column name to check; limit: limit value |
2727
| not_greater_than | Check if input column is not greater than the provided limit | col_name: column name to check; limit: limit value |
2828
| 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

Comments
 (0)