Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
PSDI Army
yii2
Commits
1ea895e2
Commit
1ea895e2
authored
Jan 23, 2014
by
Ivan Pomortsev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update QueryBuilder.php
Fixed some errors – syntax with ";" after closure function and also moved building of unions queries into this function.
parent
12cbaf90
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
QueryBuilder.php
framework/db/QueryBuilder.php
+6
-6
No files found.
framework/db/QueryBuilder.php
View file @
1ea895e2
...
@@ -741,27 +741,27 @@ class QueryBuilder extends \yii\base\Object
...
@@ -741,27 +741,27 @@ class QueryBuilder extends \yii\base\Object
}
}
/**
/**
* @param
string
$left left element of reducing pair
* @param
Query
$left left element of reducing pair
* @param
string
$right right element of reducing pair
* @param
Query
$right right element of reducing pair
* @return string imploding pair with "UNION ALL" if
* @return string imploding pair with "UNION ALL" if
* right element is array and "UNION" if not
* right element is array and "UNION" if not
*/
*/
$reducer
=
function
(
$left
,
$right
)
$reducer
=
function
(
$left
,
$right
)
{
{
if
(
$all
=
is_array
(
$right
))
$all
=
$right
->
params
[
'all'
];
list
(
$right
)
=
$right
;
list
(
$right
,
$params
)
=
$this
->
build
(
$right
)
;
return
$left
.
' UNION '
.
(
$all
?
'ALL '
:
' '
)
.
$right
.
' ) '
;
return
$left
.
' UNION '
.
(
$all
?
'ALL '
:
' '
)
.
$right
.
' ) '
;
}
}
;
foreach
(
$unions
as
$i
=>
$union
)
{
foreach
(
$unions
as
$i
=>
$union
)
{
if
(
$union
instanceof
Query
)
{
if
(
$union
instanceof
Query
)
{
// save the original parameters so that we can restore them later to prevent from modifying the query object
// save the original parameters so that we can restore them later to prevent from modifying the query object
$originalParams
=
$union
->
params
;
$originalParams
=
$union
->
params
;
$union
->
addParams
(
$params
);
$union
->
addParams
(
$params
);
list
(
$unions
[
$i
],
$params
)
=
$this
->
build
(
$union
);
$union
->
params
=
$originalParams
;
$union
->
params
=
$originalParams
;
}
}
}
}
return
array_reduce
(
$unions
,
$reducer
);
return
array_reduce
(
$unions
,
$reducer
);
}
}
...
...
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