case classDQMFix(condition: Column, fix: Column, fixName: String = null, taskPolicy: DQMTaskPolicy = FailNone) extends DQMTask with Product with Serializable
DQMFix will fix a column with a default value
val f = DQMFix($"age" > 100, lit(100) as "age", "age_cap100", FailNone)
If "age" greater than 100, make it 100.
Task name "age_cap100", which can be referred in the org.tresamigos.smv.dqm.DQMState
This task will not trigger a DF fail
Linear Supertypes
Serializable, Serializable, Product, Equals, DQMTask, AnyRef, Any
DQMFix will fix a column with a default value
If "age" greater than 100, make it 100. Task name "age_cap100", which can be referred in the org.tresamigos.smv.dqm.DQMState This task will not trigger a DF fail