Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
dickermoshe committed Dec 11, 2024
1 parent 4bd0114 commit 24d2dc8
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,9 @@ class JoinedSelectStatement<FirstT extends HasResultSet, FirstD>

for (final join in _joins) {
if (onlyResults &&
!(join.includeInResult ?? _includeJoinedTablesInResult)) continue;
!(join.includeInResult ?? _includeJoinedTablesInResult)) {
continue;
}

yield join.table as ResultSetImplementation;
}
Expand Down

0 comments on commit 24d2dc8

Please sign in to comment.