We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Common Sub-Expression (CSE) optimization is a common optimization technique in query execution optimization.
In our usecase, it's very useful to extract the unnecessary duplicated cast(varchar) -> jsonb.
cast(varchar) -> jsonb
CSE is the reverse process of ProjectMerge, and we need to consider their conflicts.
The text was updated successfully, but these errors were encountered:
Just a note: for CSE we need to consider purity 🤪 #9030.
Sorry, something went wrong.
chenzl25
Successfully merging a pull request may close this issue.
Common Sub-Expression (CSE) optimization is a common optimization technique in query execution optimization.
In our usecase, it's very useful to extract the unnecessary duplicated
cast(varchar) -> jsonb
.CSE is the reverse process of ProjectMerge, and we need to consider their conflicts.
The text was updated successfully, but these errors were encountered: