A function that allows grouping multiple columns. For columns with the types T1, T2, …, it returns a Tuple(T1, T2, …) type tuple containing these columns. There is no cost to execute the function.
Currently when constructing query containing tuple_(foo).in_(...) one gets quite unhelpful OperationalError when trying to use it on SQLite backend. from sqlalchemy ...