Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SQLite's joins #457

Open
data-man opened this issue Sep 20, 2022 · 2 comments
Open

SQLite's joins #457

data-man opened this issue Sep 20, 2022 · 2 comments

Comments

@data-man
Copy link

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.

@rbock
Copy link
Owner

rbock commented Sep 21, 2022

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?

@data-man
Copy link
Author

Do you want to create a pull request?

I'll try ASAP. :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants