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
We should not ignore any errors when decoding db result.
match row.try_get(column.as_str()) { Ok(v) => Ok(Some(v)), // Error ignored Err(_) => Ok(None), }
For example:
sea-orm/src/executor/query.rs
Lines 86 to 121 in e144216
The text was updated successfully, but these errors were encountered:
Encountered this issue on #60, where most of the errors silenced whentry_get() an Option<T> in Postgres.
try_get()
Option<T>
Sorry, something went wrong.
Probably fixed at 1eb4900.
billy1624
No branches or pull requests
We should not ignore any errors when decoding db result.
For example:
sea-orm/src/executor/query.rs
Lines 86 to 121 in e144216
The text was updated successfully, but these errors were encountered: