I'm getting rows from SQL in PA.
If I don't include any filter, it works
If I add any of these 2 filters, it works
(SU_TYPE eq 'Es' or SU_TYPE eq 'Te') -> 21477 rows
(SU_STATUS eq 'Active' or SU_STATUS eq 'Pending' or SU_STATUS eq 'Planned') -> 58161 rows
But if I change the SQL filter to this doesn't work, it timeout after 4h
(SU_TYPE eq 'Es' or SU_TYPE eq 'Te') and (SU_STATUS eq 'Active' or SU_STATUS eq 'Pending' or SU_STATUS eq 'Planned')