sqlpp11 icon indicating copy to clipboard operation
sqlpp11 copied to clipboard

SQLite's joins

Open data-man opened this issue 3 years ago • 2 comments

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.

data-man avatar Sep 20 '22 06:09 data-man

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?

rbock avatar Sep 21 '22 04:09 rbock

Do you want to create a pull request?

I'll try ASAP. :)

data-man avatar Sep 21 '22 04:09 data-man