mirror of
https://github.com/rbock/sqlpp11.git
synced 2026-02-17 19:58:42 -06:00
Added "real" cross join
This commit is contained in:
@@ -90,6 +90,12 @@ namespace sqlpp
|
||||
return ::sqlpp::outer_join(*this, t);
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
auto cross_join(T t) const -> decltype(::sqlpp::cross_join(*this, t))
|
||||
{
|
||||
return ::sqlpp::cross_join(*this, t);
|
||||
}
|
||||
|
||||
Table _table;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user