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
The trigger bdc_catalog/triggers/collection_tiles.sql tries to join "null" into JSON object. In this case, the postgres raises an invalid JSON field.
"null"
Consider to use NULLIF with COALESCE to avoid it. We should also change default value to {}.
NULLIF
COALESCE
{}
The text was updated successfully, but these errors were encountered:
Merge pull request #194 from raphaelrpl/b-1.0
99c7359
🐛 Fix bug related collection tiles trigger (close #193)
373eaed
raphaelrpl
No branches or pull requests
The trigger bdc_catalog/triggers/collection_tiles.sql tries to join
"null"
into JSON object. In this case, the postgres raises an invalid JSON field.Consider to use
NULLIF
withCOALESCE
to avoid it. We should also change default value to{}
.The text was updated successfully, but these errors were encountered: