We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 491836d + 0331887 commit 91754fcCopy full SHA for 91754fc
1 file changed
ydb/examples/basic-select-upsert.rs
@@ -51,7 +51,7 @@ async fn main() -> YdbResult<()> {
51
.await?
52
.into_only_row()?
53
.remove_field_by_name("sum")?;
54
- let res: YdbResult<Option<i64>> = value.try_into();
+ let res = value.try_into(); // res: YdbResult<Option<i64>>
55
return Ok(res.unwrap());
56
})
57
.await?;
0 commit comments