sqlpp11
sqlpp11 copied to clipboard
SQLite's joins
I found this in serializer.h:
86: static_assert(wrong_t<Lhs, Rhs>::value, "Sqlite3: No support for outer join");
93: static_assert(wrong_t<Lhs, Rhs>::value, "Sqlite3: No support for right_outer join");
Added in SQLite 3.39.0.
Add (long overdue) support for RIGHT and FULL OUTER JOIN.
Oh, that's great! Thanks for letting me know!
We should exclude that code via the preprocessor based on the version in the sqlite header. Do you want to create a pull request?
Do you want to create a pull request?
I'll try ASAP. :)