Skip to main content
GuideServerConfigure and deploy Tabsdata servers on your machine.TutorialsConfigure data integration workflows within a running Tabsdata server.Advanced TutorialsBuild end-to-end workflows between two specific systems.API ReferenceCLI ReferenceRelease Notes
Version: 2.0.0

CriteriaOperator

class
class CriteriaOperator(criteria: Criteria)

Bases: Operator, ABC

Categories: dq-operator

An operator that uses a criteria to select records.

Examples

The operators driven by a criteria are Filter, Select and Fail:

Filter(AnyFailed())
Select(AnyFailed(), to_table="rejected")
Fail(AnyFailed(), PercentThreshold(1))

Parameters

parameter
criteriaCriteria

Selects the rows this operator acts on.