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
Currently, the rewrite feature replaces all rows with the value. I guess that hurts the reproducibility of bugs as the data is not the same.
My idea would be to change the SELECT to IF(colum IS NULL, NULL, REPLACEMNET) as X. With a new option.
IF(colum IS NULL, NULL, REPLACEMNET) as X
What do you think about that? I could provide a PR
The text was updated successfully, but these errors were encountered:
That actually should pretty good as a feature to ensure issues are correctly reproducible.
you can also use COALESCE (same same, just syntactic sugar) as COALESCE(column, REPLACEMENT) ;)
COALESCE
COALESCE(column, REPLACEMENT)
Sorry, something went wrong.
Do we want it on table/column level or just global as option 🤔
I would say global as option would probably be more consistent. Also, having it per table could rapidly become a configuration issue :)
shyim
No branches or pull requests
Currently, the rewrite feature replaces all rows with the value. I guess that hurts the reproducibility of bugs as the data is not the same.
My idea would be to change the SELECT to
IF(colum IS NULL, NULL, REPLACEMNET) as X
. With a new option.What do you think about that? I could provide a PR
The text was updated successfully, but these errors were encountered: