pub fn cross_join(table: impl IntoExpr) -> JoinChainExpand description
CROSS JOIN <table> — an inner join that also pins the join order.
Takes ON/USING like any other, because in SQLite that is exactly what it is
for: writing CROSS JOIN instead of JOIN is how the query planner is told not
to swap the two tables around.