-
Notifications
You must be signed in to change notification settings - Fork 282
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
"IN" on empty array causes invalid SQL #709
Comments
It is invalid SQL. Kysely builds exactly what you ask it to build. We never add anything unexpected to the SQL. |
I know, that's what I'm saying. But don't you think a library for SQL generation should create only valid SQLs? I do agree that the third option (the
|
Kysely should build what you ask it to build. You already get a runtime error. Feel free to create a PR that documents this 👍 |
I'm sorry fella but with your tone I really don't feel like it. Good luck |
You're asking me to build something for you for free after you're already using something I built for you for free. I don't care if you don't create the PR, but if you want it you need to write it. |
Just wanted to jump in and say there was nothing wrong with @koskimas' tone here. ❤️ |
typeorm/typeorm#2195 (comment) This is handled by the majority of ORMs and even query builders, so not handling it might be more unexpected... |
Kysely differs in design philosophy from other libraries out there. No magic. Explicit. Unopinionated. WYSIWYG (what you see is what you get). It is what it is. @koskimas maybe we could offer a plugin that adds a |
It does seem surprising that the code type-checks but leads to the generation of invalid SQL. Kysely uses the type system to protect you from accidentally generating invalid SQL in other ways. However, there doesn't seem to be a way to (ergonomically) express a "non-empty array" type in TypeScript. |
@spinda [unknown, …unknown[]] represents a non-empty tuple type - casting to it needs to be done carefully though. |
Just a question, if I may. How does this behave when IN is a subquery and that subquery returns an empty set of rows? Is there any way to solve that case easily, without rewriting the query? |
An empty result set from a subquery should work. It's just an empty tuple literal |
Nowadays we DO have special handling in |
@koskimas I've just updated the plugin in #925 to address @igalklebanov 's comments. This should help address |
Not sure if it's by design or a bug but...
Trying to run
db.selectFrom('person').selectAll().where('id', 'in', [])
causes an invalid SQL (see image below👇 the()
part is invalid).Now obviously, this query doesn't make a lot of sense, and you can simply assume there would be 0 rows returned, but IMO ot. makes sense when in the TypeScript context, and also SQL generating library that creates an invalid SQL is a bit weird. The ways I think we can overcome this "issue" really depends on the philosophy Kysely is based on:
IN (null)
which should be equivalent)Let me know what you guys think...
The text was updated successfully, but these errors were encountered: