Functions¶
spark_expectations.utils.udf.get_actions_list(column: Column) -> Column
¶
This function takes column of type array(map(str,str)) and creates list by picking action_if_failed from dict of failed expectations rules. Args: column: Provide a column of type array(map(str,str))
Returns:
| Name | Type | Description |
|---|---|---|
list |
Column
|
returns a column with list of action_if_failed from the set expectations rules |
Source code in spark_expectations/utils/udf.py
spark_expectations.utils.udf.remove_empty_maps(column: Column) -> Column
¶
This function takes a column of type array(map(str,str)) and removes empty maps from it Args: column: Provide a column of type array(map(str,str)) Returns: list: Returns a Column which is not having empty maps
Source code in spark_expectations/utils/udf.py
spark_expectations.utils.udf.remove_passing_status_maps(column: Column) -> Column
¶
This function takes a column of type array(map(str,str)) and removes maps with passing status from it Args: column: Provide a column of type array(map(str,str))
Returns:
| Name | Type | Description |
|---|---|---|
list |
Column
|
returns a Column with items with a passing status removed. |
Source code in spark_expectations/utils/udf.py
spark_expectations.utils.udf.safe_cast(spark: SparkSession, column: str, target_type: str) -> Column
¶
Checks if ANSI mode is enabled. If enabled, uses try_cast to cast the column to the target type. If not, uses cast. Args: spark: SparkSession column: column to cast (provided as a string) target_type: target type to cast to
Returns:
| Name | Type | Description |
|---|---|---|
Column |
Column
|
the casted column |