Skip to content

Commit

Permalink
remove some unnecessary type annotations on lines changed anyway
Browse files Browse the repository at this point in the history
  • Loading branch information
aqrln committed Jan 20, 2024
1 parent c1efc44 commit 095fd00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions query-engine/core/src/interpreter/query_interpreters/read.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ fn read_one(

match record {
Some(record) if query.relation_load_strategy.is_query() => {
let records: ManyRecords = record.into();
let nested: Vec<QueryResult> = process_nested(tx, query.nested, Some(&records)).await?;
let records = record.into();
let nested = process_nested(tx, query.nested, Some(&records)).await?;

Ok(RecordSelection {
name: query.name,
Expand Down

0 comments on commit 095fd00

Please sign in to comment.