We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8a981b commit 1e76773Copy full SHA for 1e76773
src/Query/Builder.php
@@ -140,8 +140,6 @@ protected function runSelect()
140
$options += $this->timestampBound->transactionOptions();
141
}
142
143
- return count($options) > 0
144
- ? $this->connection->selectWithOptions($sql, $bindings, $options)
145
- : $this->connection->select($sql, $bindings);
+ return $this->connection->selectWithOptions($sql, $bindings, $options);
146
147
0 commit comments