I changed my Query to this and it comes back quickly:
SELECT t.*
FROM EmailEvents AS t
where (t.CreatedAt > '2024-06-10 12:13:00' and t.type = 'SENT' )
But, if I add one more filter condition below, the Query runs slow again. Is this another limit I am hitting up against?
where (t.CreatedAt > '2024-06-10 12:13:00' and t.type = 'SENT' and t.AppName = 'Batch')