-
Notifications
You must be signed in to change notification settings - Fork 328
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
What is the desired behaviour for Database backends on Nothing * Nothing
#11751
Comments
How do the other DBs handle this? |
Snowflake and SQLServer both seem to accept the operation and simply return So it seems that the issue may only be with Postgres. |
Before this can be implemented we need to address #11757 |
Since in #11757 we decided that |
Updated tests are merged into the #11737 PR. |
Currently, e.g. on Postgres an expression
Nothing * Nothing
results inoperator is not unique: unknown * unknown
.The created SQL is correct (
NULL * NULL
) but the database does not like unknown types.Do we:
I guess (2) will be more user-friendly and consistent with in-memory backend.
The text was updated successfully, but these errors were encountered: