Skip to content

Commit 1a5ba5b

Browse files
committed
remove the unused class property and method
1 parent a9d9fa0 commit 1a5ba5b

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

system/Database/OCI8/Builder.php

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,6 @@ class Builder extends BaseBuilder
4848
*/
4949
protected $countString = 'SELECT COUNT(1) ';
5050

51-
/**
52-
* Limit used flag
53-
*
54-
* If we use LIMIT, we'll add a field that will
55-
* throw off num_fields later.
56-
*
57-
* @var bool
58-
*/
59-
protected $limitUsed = false;
60-
6151
/**
6252
* A reference to the database connection.
6353
*
@@ -223,15 +213,6 @@ protected function _limit(string $sql, bool $offsetIgnore = false): string
223213
return $sql . ' OFFSET ' . $offset . ' ROWS FETCH NEXT ' . $this->QBLimit . ' ROWS ONLY';
224214
}
225215

226-
/**
227-
* Resets the query builder values. Called by the get() function
228-
*/
229-
protected function resetSelect()
230-
{
231-
$this->limitUsed = false;
232-
parent::resetSelect();
233-
}
234-
235216
/**
236217
* Generates a platform-specific batch update string from the supplied data
237218
*/

0 commit comments

Comments
 (0)