Skip to content

Conversation

@maumar
Copy link
Contributor

@maumar maumar commented Oct 24, 2019

Problem was that during null semantics rewrite we create IS NULL calls on the operands of the comparison. If the operands themselves are complicated, we were simply comparing the entire complex expression to null. In some cases, we only need to look at constituents, e.g. a + b == null <=> a == null || b == null.

Also added other minor optimizations around null semantics:

  • non_nullable_column IS NULL resolves to false,
  • try to simplify expression after applying de Morgan transformations

Also fixed a bug exposed by these changes, where column nullability would be incorrect for scenarios with owned types.

@maumar maumar force-pushed the fix16078 branch 2 times, most recently from 8fd57dc to baf9d53 Compare October 24, 2019 01:31
@maumar
Copy link
Contributor Author

maumar commented Oct 24, 2019

new version up

@maumar
Copy link
Contributor Author

maumar commented Oct 24, 2019

up

@maumar
Copy link
Contributor Author

maumar commented Oct 24, 2019

new version up, made some changes, please take a final peek @smitpatel @roji

…null, just check it's constituents rather than entire expression

Problem was that during null semantics rewrite we create IS NULL calls on the operands of the comparison. If the operands themselves are complicated, we were simply comparing the entire complex expression to null. In some cases, we only need to look at constituents, e.g. a + b == null <=> a == null || b == null.

Also added other minor optimizations around null semantics:

- non_nullable_column IS NULL resolves to false,
- try to simplify expression after applying de Morgan transformations

Also fixed a bug exposed by these changes, where column nullability would be incorrect for scenarios with owned types.
@maumar maumar merged commit 07c0940 into release/3.1 Oct 24, 2019
@maumar maumar deleted the fix16078 branch October 24, 2019 21:54
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

Successfully merging this pull request may close these issues.

5 participants