SA has support for regexes but those seem to be Python regexps (Regular expressions in SQLalchemy queries?)
I need to use regex on matching some rows (a row contains 1 log line, so regex is a natural match) but for performance reasons I would prefer to do it using PG backend, like in this question:
select * from table where name ~ 'foo';
How can I combine both PG-implemented regex AND SQLAlchemy object selection in one query?