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
e738a715
Unverified
Commit
e738a715
authored
Oct 08, 2019
by
Sergei Morozov
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'bpo/2.9/#3686' into 2.9
parents
66f28111
08dca0d3
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 @
e738a715
...
@@ -166,7 +166,15 @@ class ResultCacheStatement implements IteratorAggregate, ResultStatement
...
@@ -166,7 +166,15 @@ class ResultCacheStatement implements IteratorAggregate, ResultStatement
*/
*/
public
function
fetchAll
(
$fetchMode
=
null
,
$fetchArgument
=
null
,
$ctorArgs
=
null
)
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
;
$this
->
emptied
=
true
;
return
$this
->
data
;
return
$this
->
data
;
...
...
tests/Doctrine/Tests/DBAL/Functional/ResultCacheTest.php
View file @
e738a715
...
@@ -176,6 +176,22 @@ class ResultCacheTest extends DbalFunctionalTestCase
...
@@ -176,6 +176,22 @@ class ResultCacheTest extends DbalFunctionalTestCase
self
::
assertCount
(
1
,
$layerCache
->
fetch
(
'testcachekey'
));
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
));
}
public
function
assertCacheNonCacheSelectSameFetchModeAreEqual
(
$expectedResult
,
$fetchMode
)
public
function
assertCacheNonCacheSelectSameFetchModeAreEqual
(
$expectedResult
,
$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
(
10
,
'testcachekey'
));
...
...
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