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
dbplyr::escape( blob::blob(raw(3), NULL), parens = FALSE, collapse = NULL, con = dbplyr::simulate_mssql() ) #> <SQL> (0x000000) #> <SQL> (0xNULL)
Created on 2022-08-23 by the reprex package (v2.0.1)
Should be plain NULL .
NULL
The text was updated successfully, but these errors were encountered:
I think it's doing it incorrectly for every backend:
dbplyr::escape( blob::blob(raw(3), NULL), parens = FALSE, collapse = NULL, con = dbplyr::simulate_postgres() ) #> <SQL> (X'000000') #> <SQL> (X'NULL')
Created on 2022-12-04 with reprex v2.0.2
Sorry, something went wrong.
Correct "NA" translation for BLOBs
9742c53
Fixes #983
3e6203d
Successfully merging a pull request may close this issue.
Created on 2022-08-23 by the reprex package (v2.0.1)
Should be plain
NULL
.The text was updated successfully, but these errors were encountered: