- 23 Jan, 2014 32 commits
-
-
Alexander Makarov authored
Fixes #2079
-
Alexander Makarov authored
- DbMessageSource now performs UNION ALL. - Fixed message merging for php and po. - Updated tests.
-
Alexander Makarov authored
Conflicts: framework/CHANGELOG.md
-
Qiang Xue authored
Update QueryBuilder.php and Query.php
-
Ivan Pomortsev authored
Added one line about support of UNION ALL queries.
-
Ivan Pomortsev authored
Comment test because it proceed an errors when tries to run at mssql and other DBMS.
-
Ivan Pomortsev authored
Change <code>array_reduce</code> with anonimous function variant to easy string collection from pieces of unions.
-
Qiang Xue authored
-
Ivan Pomortsev authored
Using short array syntax.
-
Carsten Brandt authored
-
Carsten Brandt authored
issue #1797
-
Ivan Pomortsev authored
Add test for UNION/UNION ALL function. It could be useful to use "phpunit --group=db --filter testBuildUnion" command for run it.
-
Ivan Pomortsev authored
Change buildUnion method to be ready to accept parameters in <code>['all' => $all, 'query' => $query]</code> format for division to "UNION" and "UNION ALL" constructions.
-
Ivan Pomortsev authored
Change passing parameters to array with two elements – 'all' which means if we use UNION or UNION ALL construction and 'query' which is our sql query that will be at right of construction.
-
Carsten Brandt authored
-
Carsten Brandt authored
in case no dir is present
-
Carsten Brandt authored
-
Carsten Brandt authored
-
Carsten Brandt authored
-
Ivan Pomortsev authored
Forget one ";" :D
-
Ivan Pomortsev authored
Delete some spaces from result string.
-
Ivan Pomortsev authored
Change union method to accept also <code>$all</code> variable. TRUE means that we must results <code>UNION ALL</code> construction, FALSE – that <code>UNION</code>.
-
Ivan Pomortsev authored
Fixed some errors – syntax with ";" after closure function and also moved building of unions queries into this function.
-
Ivan Pomortsev authored
Change using of implode to convert array of queries to union to array_reduce. Result of this changing is that code feel difference between two selects that connects with UNION and two selects that connects with UNION ALL.
-
Qiang Xue authored
-
Qiang Xue authored
#2103 improves http exception consistency and adds new subclasses
-
Daniel Schmidt authored
-
Daniel Schmidt authored
-
Daniel Schmidt authored
-
Daniel Schmidt authored
-
Alexander Makarov authored
- i18n now falls back to `en` from `en-US` if message translation isn't found - View now falls back to `en` from `en-US` if file not found - Default `sourceLanguage` and `language` are now `en`
-
- 22 Jan, 2014 8 commits
-
-
Qiang Xue authored
-
Qiang Xue authored
-
Alexander Makarov authored
Adjustment the translation into Portuguese of Brazil.
-
Thiago Talma authored
-
Qiang Xue authored
Added ability to get incoming headers
-
Qiang Xue authored
-
Qiang Xue authored
Fixes #1958: `beforeSubmit` in `yii.activeform` is now executed after validation and before form submission
-
Qiang Xue authored
Transfer beforeSubmit function after global validation all fields forms
-