I have created a GE dataset using SparkDFDataset(sparkDF) and tried to add expectation on it as df.expect_compound_columns_to_be_unique(
columns, condition_parser=‘great_expectations__experimental__’, row_condition=‘col(“properties_eye”)==“black”’), It was throwing the error expect_compound_columns_to_be_unique() got an unexpected keyword argument ‘condition_parser’, it was working fine for pandas.
How to use row_condition and condition_parser for sparkDFDataset?