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
EXISTS
workers-rs
0.5.0
wrangler
3.99.0
Using .first with this type of query fails to parse the result as a bool.
.first
db .prepare("SELECT EXISTS(SELECT 1 FROM users WHERE email = $1)") .bind(&[email.to_string().into()]) .unwrap() .first::<bool>(None) .await
exists
Parsing fails
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is there an existing issue for this?
What version of
workers-rs
are you using?0.5.0
What version of
wrangler
are you using?3.99.0
Describe the bug
Using
.first
with this type of query fails to parse the result as a bool.Steps To Reproduce
exists
queryParsing fails
The text was updated successfully, but these errors were encountered: