-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Additional changes based on the discussion in #4007 #4034
Changes from all commits
e0421d1
4af4999
3eb6f0a
e74b97c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -13,6 +13,7 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use InvalidArgumentException; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use IteratorAggregate; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use PDO; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use function array_map; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use function array_merge; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use function array_values; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use function assert; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -55,7 +56,7 @@ class ResultCacheStatement implements IteratorAggregate, ResultStatement, Forwar | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
private $emptied = false; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** @var mixed[] */ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** @var array<int,array<string,mixed>> */ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
private $data; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** @var int */ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -179,18 +180,26 @@ public function fetch($fetchMode = null, $cursorOrientation = PDO::FETCH_ORI_NEX | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
public function fetchAll($fetchMode = null, $fetchArgument = null, $ctorArgs = null) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
$data = $this->statement->fetchAll($fetchMode, $fetchArgument, $ctorArgs); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if ($fetchMode === FetchMode::COLUMN) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
foreach ($data as $key => $value) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
$data[$key] = [$value]; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
$data = $this->statement->fetchAll(FetchMode::ASSOCIATIVE, $fetchArgument, $ctorArgs); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
$this->data = $data; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
$this->emptied = true; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return $this->data; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if ($fetchMode === FetchMode::NUMERIC) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
foreach ($data as $i => $row) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
$data[$i] = array_values($row); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} elseif ($fetchMode === FetchMode::MIXED) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
foreach ($data as $i => $row) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
$data[$i] = array_merge($row, array_values($row)); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} elseif ($fetchMode === FetchMode::COLUMN) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
foreach ($data as $i => $row) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
$data[$i] = reset($row); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return $data; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+188
to
+202
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How about this:
Suggested change
? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It will require a switch on each row instead of an if/else once. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -247,7 +256,9 @@ public function fetchAllNumeric() : array | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
$data = $this->statement->fetchAll(FetchMode::ASSOCIATIVE); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return $this->store($data); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
$this->store($data); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return array_map('array_values', $this->data); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -261,7 +272,9 @@ public function fetchAllAssociative() : array | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
$data = $this->statement->fetchAll(FetchMode::ASSOCIATIVE); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return $this->store($data); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
$this->store($data); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return $this->data; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -311,19 +324,11 @@ private function doFetch() | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* @param array<int,array<mixed>> $data | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* @return array<int,array<mixed>> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* @param array<int,array<string,mixed>> $data | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
private function store(array $data) : array | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
private function store(array $data) : void | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
foreach ($data as $key => $value) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
$data[$key] = [$value]; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
$this->data = $data; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
$this->emptied = true; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return $this->data; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -102,13 +102,13 @@ public function testMixingFetch() : void | |
$numExpectedResult[] = array_values($v); | ||
} | ||
|
||
$stmt = $this->connection->executeQuery('SELECT * FROM caching ORDER BY test_int ASC', [], [], new QueryCacheProfile(10, 'testcachekey')); | ||
$stmt = $this->connection->executeQuery('SELECT * FROM caching ORDER BY test_int ASC', [], [], new QueryCacheProfile(0, 'testcachekey')); | ||
|
||
$data = $this->hydrateStmt($stmt, FetchMode::ASSOCIATIVE); | ||
|
||
self::assertEquals($this->expectedResult, $data); | ||
|
||
$stmt = $this->connection->executeQuery('SELECT * FROM caching ORDER BY test_int ASC', [], [], new QueryCacheProfile(10, 'testcachekey')); | ||
$stmt = $this->connection->executeQuery('SELECT * FROM caching ORDER BY test_int ASC', [], [], new QueryCacheProfile(0, 'testcachekey')); | ||
|
||
$data = $this->hydrateStmt($stmt, FetchMode::NUMERIC); | ||
|
||
|
@@ -124,26 +124,26 @@ public function testIteratorFetch() : void | |
|
||
private function assertStandardAndIteratorFetchAreEqual(int $fetchMode) : void | ||
{ | ||
$stmt = $this->connection->executeQuery('SELECT * FROM caching ORDER BY test_int ASC', [], [], new QueryCacheProfile(10, 'testcachekey')); | ||
$stmt = $this->connection->executeQuery('SELECT * FROM caching ORDER BY test_int ASC', [], [], new QueryCacheProfile(0, 'testcachekey')); | ||
$data = $this->hydrateStmt($stmt, $fetchMode); | ||
|
||
$stmt = $this->connection->executeQuery('SELECT * FROM caching ORDER BY test_int ASC', [], [], new QueryCacheProfile(10, 'testcachekey')); | ||
$stmt = $this->connection->executeQuery('SELECT * FROM caching ORDER BY test_int ASC', [], [], new QueryCacheProfile(0, 'testcachekey')); | ||
$dataIterator = $this->hydrateStmtIterator($stmt, $fetchMode); | ||
|
||
self::assertEquals($data, $dataIterator); | ||
} | ||
|
||
public function testDontCloseNoCache() : void | ||
{ | ||
$stmt = $this->connection->executeQuery('SELECT * FROM caching ORDER BY test_int ASC', [], [], new QueryCacheProfile(10, 'testcachekey')); | ||
$stmt = $this->connection->executeQuery('SELECT * FROM caching ORDER BY test_int ASC', [], [], new QueryCacheProfile(0, 'testcachekey')); | ||
|
||
$data = []; | ||
|
||
while ($row = $stmt->fetch(FetchMode::ASSOCIATIVE)) { | ||
$data[] = $row; | ||
} | ||
|
||
$stmt = $this->connection->executeQuery('SELECT * FROM caching ORDER BY test_int ASC', [], [], new QueryCacheProfile(10, 'testcachekey')); | ||
$stmt = $this->connection->executeQuery('SELECT * FROM caching ORDER BY test_int ASC', [], [], new QueryCacheProfile(0, 'testcachekey')); | ||
|
||
$data = []; | ||
|
||
|
@@ -156,12 +156,12 @@ public function testDontCloseNoCache() : void | |
|
||
public function testDontFinishNoCache() : void | ||
{ | ||
$stmt = $this->connection->executeQuery('SELECT * FROM caching ORDER BY test_int ASC', [], [], new QueryCacheProfile(10, 'testcachekey')); | ||
$stmt = $this->connection->executeQuery('SELECT * FROM caching ORDER BY test_int ASC', [], [], new QueryCacheProfile(0, 'testcachekey')); | ||
|
||
$stmt->fetch(FetchMode::ASSOCIATIVE); | ||
$stmt->closeCursor(); | ||
|
||
$stmt = $this->connection->executeQuery('SELECT * FROM caching ORDER BY test_int ASC', [], [], new QueryCacheProfile(10, 'testcachekey')); | ||
$stmt = $this->connection->executeQuery('SELECT * FROM caching ORDER BY test_int ASC', [], [], new QueryCacheProfile(0, 'testcachekey')); | ||
|
||
$this->hydrateStmt($stmt, FetchMode::NUMERIC); | ||
|
||
|
@@ -171,7 +171,7 @@ public function testDontFinishNoCache() : void | |
public function testFetchAllAndFinishSavesCache() : void | ||
{ | ||
$layerCache = new ArrayCache(); | ||
$stmt = $this->connection->executeQuery('SELECT * FROM caching WHERE test_int > 500', [], [], new QueryCacheProfile(10, 'testcachekey', $layerCache)); | ||
$stmt = $this->connection->executeQuery('SELECT * FROM caching WHERE test_int > 500', [], [], new QueryCacheProfile(0, 'testcachekey', $layerCache)); | ||
$stmt->fetchAll(); | ||
$stmt->closeCursor(); | ||
|
||
|
@@ -199,13 +199,13 @@ public function testFetchAllColumn() : void | |
*/ | ||
private function assertCacheNonCacheSelectSameFetchModeAreEqual(array $expectedResult, int $fetchMode) : void | ||
{ | ||
$stmt = $this->connection->executeQuery('SELECT * FROM caching ORDER BY test_int ASC', [], [], new QueryCacheProfile(10, 'testcachekey')); | ||
$stmt = $this->connection->executeQuery('SELECT * FROM caching ORDER BY test_int ASC', [], [], new QueryCacheProfile(0, 'testcachekey')); | ||
|
||
self::assertEquals(2, $stmt->columnCount()); | ||
$data = $this->hydrateStmt($stmt, $fetchMode); | ||
self::assertEquals($expectedResult, $data); | ||
|
||
$stmt = $this->connection->executeQuery('SELECT * FROM caching ORDER BY test_int ASC', [], [], new QueryCacheProfile(10, 'testcachekey')); | ||
$stmt = $this->connection->executeQuery('SELECT * FROM caching ORDER BY test_int ASC', [], [], new QueryCacheProfile(0, 'testcachekey')); | ||
|
||
self::assertEquals(2, $stmt->columnCount()); | ||
$data = $this->hydrateStmt($stmt, $fetchMode); | ||
|
@@ -215,23 +215,24 @@ private function assertCacheNonCacheSelectSameFetchModeAreEqual(array $expectedR | |
|
||
public function testEmptyResultCache() : void | ||
{ | ||
$stmt = $this->connection->executeQuery('SELECT * FROM caching WHERE test_int > 500', [], [], new QueryCacheProfile(10, 'emptycachekey')); | ||
$data = $this->hydrateStmt($stmt); | ||
$stmt = $this->connection->executeQuery('SELECT * FROM caching WHERE test_int > 500', [], [], new QueryCacheProfile(0, 'emptycachekey')); | ||
$this->hydrateStmt($stmt); | ||
|
||
$stmt = $this->connection->executeQuery('SELECT * FROM caching WHERE test_int > 500', [], [], new QueryCacheProfile(10, 'emptycachekey')); | ||
$data = $this->hydrateStmt($stmt); | ||
$stmt = $this->connection->executeQuery('SELECT * FROM caching WHERE test_int > 500', [], [], new QueryCacheProfile(0, 'emptycachekey')); | ||
$this->hydrateStmt($stmt); | ||
|
||
self::assertCount(1, $this->sqlLogger->queries, 'just one dbal hit'); | ||
} | ||
|
||
public function testChangeCacheImpl() : void | ||
{ | ||
$stmt = $this->connection->executeQuery('SELECT * FROM caching WHERE test_int > 500', [], [], new QueryCacheProfile(10, 'emptycachekey')); | ||
$data = $this->hydrateStmt($stmt); | ||
$stmt = $this->connection->executeQuery('SELECT * FROM caching WHERE test_int > 500', [], [], new QueryCacheProfile(0, 'emptycachekey')); | ||
$this->hydrateStmt($stmt); | ||
|
||
$secondCache = new ArrayCache(); | ||
$stmt = $this->connection->executeQuery('SELECT * FROM caching WHERE test_int > 500', [], [], new QueryCacheProfile(10, 'emptycachekey', $secondCache)); | ||
$data = $this->hydrateStmt($stmt); | ||
|
||
$stmt = $this->connection->executeQuery('SELECT * FROM caching WHERE test_int > 500', [], [], new QueryCacheProfile(0, 'emptycachekey', $secondCache)); | ||
$this->hydrateStmt($stmt); | ||
|
||
self::assertCount(2, $this->sqlLogger->queries, 'two hits'); | ||
self::assertCount(1, $secondCache->fetch('emptycachekey')); | ||
|
@@ -243,7 +244,8 @@ public function testChangeCacheImpl() : void | |
private function hydrateStmt(ResultStatement $stmt, int $fetchMode = FetchMode::ASSOCIATIVE) : array | ||
{ | ||
$data = []; | ||
while ($row = $stmt->fetch($fetchMode)) { | ||
|
||
foreach ($stmt->fetchAll($fetchMode) as $row) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is how #4033 was discovered. |
||
$data[] = is_array($row) ? array_change_key_case($row, CASE_LOWER) : $row; | ||
} | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the root cause of #4033.