Skip to content

Commit

Permalink
Merge pull request #10634 from greg0ire/wrong-comparison
Browse files Browse the repository at this point in the history
Remove wrong comparison
  • Loading branch information
greg0ire committed Apr 15, 2023
2 parents 2d3e89e + 3e04516 commit eeae573
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1193,7 +1193,7 @@ protected function getSelectColumnsSQL(): string
continue;
}

if (($assoc->isToMany() > 0) && $this->currentPersisterContext->handlesLimits) {
if ($assoc->isToMany() && $this->currentPersisterContext->handlesLimits) {
continue;
}

Expand Down

0 comments on commit eeae573

Please sign in to comment.