Open DominikZuercherQC opened 2 months ago
It would increase userfriendliness if an optional filter condition could be passed to a comparator (eg the SqlCompyreComparator) that allows to prefilter the two tables before comparing them
Should the condition be a SQLAlchemy condition (e.g. sa.column("col_name") == 2) or rather raw sql (e.g. col_name = 2)?
sa.column("col_name") == 2
col_name = 2
It would increase userfriendliness if an optional filter condition could be passed to a comparator (eg the SqlCompyreComparator) that allows to prefilter the two tables before comparing them