Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
81922a27
Unverified
Commit
81922a27
authored
Oct 08, 2019
by
Marco Pivetta
Committed by
GitHub
Oct 08, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3686 from morozov/issues/3597
Fixed query result caching when FetchMode::COLUMN is used
parents
e3cefb09
7a991332
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
1 deletion
+25
-1
ResultCacheStatement.php
lib/Doctrine/DBAL/Cache/ResultCacheStatement.php
+9
-1
ResultCacheTest.php
tests/Doctrine/Tests/DBAL/Functional/ResultCacheTest.php
+16
-0
No files found.
lib/Doctrine/DBAL/Cache/ResultCacheStatement.php
View file @
81922a27
...
...
@@ -167,7 +167,15 @@ class ResultCacheStatement implements IteratorAggregate, ResultStatement
*/
public
function
fetchAll
(
$fetchMode
=
null
,
$fetchArgument
=
null
,
$ctorArgs
=
null
)
{
$this
->
data
=
$this
->
statement
->
fetchAll
(
$fetchMode
,
$fetchArgument
,
$ctorArgs
);
$data
=
$this
->
statement
->
fetchAll
(
$fetchMode
,
$fetchArgument
,
$ctorArgs
);
if
(
$fetchMode
===
FetchMode
::
COLUMN
)
{
foreach
(
$data
as
$key
=>
$value
)
{
$data
[
$key
]
=
[
$value
];
}
}
$this
->
data
=
$data
;
$this
->
emptied
=
true
;
return
$this
->
data
;
...
...
tests/Doctrine/Tests/DBAL/Functional/ResultCacheTest.php
View file @
81922a27
...
...
@@ -177,6 +177,22 @@ class ResultCacheTest extends DbalFunctionalTestCase
self
::
assertCount
(
1
,
$layerCache
->
fetch
(
'testcachekey'
));
}
public
function
testFetchAllColumn
()
:
void
{
$query
=
$this
->
connection
->
getDatabasePlatform
()
->
getDummySelectSQL
(
'1'
);
$qcp
=
new
QueryCacheProfile
(
0
,
0
,
new
ArrayCache
());
$stmt
=
$this
->
connection
->
executeCacheQuery
(
$query
,
[],
[],
$qcp
);
$stmt
->
fetchAll
(
FetchMode
::
COLUMN
);
$stmt
->
closeCursor
();
$stmt
=
$this
->
connection
->
executeCacheQuery
(
$query
,
[],
[],
$qcp
);
self
::
assertEquals
([
1
],
$stmt
->
fetchAll
(
FetchMode
::
COLUMN
));
}
/**
* @param array<int, array<int, int|string>> $expectedResult
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment