Fabio B. Silva
|
24dc74a800
|
Fixed DDC-1539
|
2011-12-20 10:31:00 -02:00 |
|
Fabio B. Silva
|
5c89d7ffcb
|
support for bit comparison
|
2011-12-19 16:24:16 -02:00 |
|
Andrew Mackrodt
|
ef12a09ae0
|
Added remaining absolute namespace paths to phpdoc annotations - issue DDC-1025.
|
2011-12-11 21:56:27 +00:00 |
|
Andrew Mackrodt
|
2fdb55a878
|
Added absolute namespace paths to phpdoc annotations - issue DDC-1025.
|
2011-12-11 21:56:26 +00:00 |
|
Guilherme Blanco
|
0380d5ae58
|
Implemented multiple enhancements in InExpression support for DQL. Fixed DDC-1472 and DDC-1416.
|
2011-12-04 02:41:54 -05:00 |
|
Guilherme Blanco
|
2f6b930a8d
|
Implemented missing support in CollectionMemberComparison. Removed old todo in ArrayHydrator. Finished implementation of IdentificationVariable in ArithmeticPrimary.
|
2011-12-03 15:19:21 -05:00 |
|
Guilherme Blanco
|
2642daa438
|
Fixed DDC-1236: GROUP BY now supports ResultVariable and IdentificationVariable. Composite PK is also supported. If you are willing to group by an aggregate function or a function itself, just place it in SELECT expression then refer to it in the GROUP BY clause. If you are not willing to have the function being part of your resultset, just mark the column as HIDDEN and you are done.
|
2011-12-01 23:52:35 -05:00 |
|
Guilherme Blanco
|
5b73f1bd82
|
Improved code readability. Improved performance.
|
2011-11-30 09:57:54 -05:00 |
|
Fabio B. Silva
|
3f8347a4d9
|
fixed DDC-1474
|
2011-11-15 17:00:19 -02:00 |
|
Guilherme Blanco
|
81cc6d9da8
|
Implemented alias support for EntityResult. This addresses DDC-1096 and DDC-1424. Improved DQL Parser, SQL Walker and Hydrators in general. Performance is generally improved by a factor of 20%. There is still more to be done, like remove the isMixed in ResultSetMapping, mainly because this query - SELECT u AS user FROM User u -, it should return an array('user' => [User object]), while currently it doesn't due to this before mentioned 'bug' in RSM. Will open a separate ticket for this. Also, UnitOfWork and Hydrators share code that could be abstracted/improved.
|
2011-11-14 01:36:39 -02:00 |
|
Guilherme Blanco
|
eeba947ea7
|
Code optimizations. Fixed unused argument in OrmTestCase as referred in DDC-766.
|
2011-10-16 02:10:59 -02:00 |
|
Christian Raue
|
1681d8a893
|
switched 2nd and 3rd argument for SelectExpression's constructor, making the 3rd one optional to keep its signature compatible to previous versions
|
2011-10-10 14:04:55 +02:00 |
|
Guilherme Blanco
|
ebe933810e
|
Implemented HIDDEN support in DQL. Fixes DDC-1363.
|
2011-10-03 02:07:07 -03:00 |
|
Guilherme Blanco
|
a86038b484
|
Fixed issue with CaseExpression not working in Subselects.
|
2011-09-21 17:30:45 -03:00 |
|
Guilherme Blanco
|
a7f3af8328
|
Added IDENTITY DQL Function. Fixes DDC-1339.
|
2011-09-08 02:10:48 -03:00 |
|
Guilherme Blanco
|
6bbf2d9da3
|
Added support for ResultVariable referencing in ArithmeticPrimary. Fixes DDC-1346.
|
2011-09-05 03:16:01 -03:00 |
|
Guilherme Blanco
|
f148912a28
|
[DDC-934][DDC-1100][DDC-1331] Implemented support to multi-values in INSTANCE OF expression.
|
2011-08-15 01:53:56 -03:00 |
|
Guilherme Blanco
|
a0ca506db7
|
Added support to SingleValuePathExpression in ORDER BY.
|
2011-08-14 00:46:02 -03:00 |
|
Guilherme Blanco
|
816ce41f63
|
Added support to CaseExpression. Added support to nest AndX and OrX QueryBuilder composite expressions, since they do not mess with generated queries.
|
2011-08-08 02:09:25 -03:00 |
|
Guilherme Blanco
|
699ccfddb6
|
Implemented COALESCE and NULLIF support in DQL.
|
2011-06-17 16:16:22 -03:00 |
|
Benjamin Eberlei
|
c53baa9935
|
[DDC-1091] Fix bug with custom string functions in StringPrimary
|
2011-05-01 11:01:30 +02:00 |
|
Chekote
|
5784c7bacd
|
Fixed phpdoc on Parser::match incorrectly stating that the token parameter can be a string value
|
2011-04-01 12:54:12 -05:00 |
|
Benjamin Eberlei
|
bda15231da
|
[DDC-1077] Bugfix in not handling literals in Select Expressions.
|
2011-03-27 21:10:50 +02:00 |
|
Benjamin Eberlei
|
6ed0ff0a12
|
[DDC-1079] Bugfix for shortcut for ArithmeticExpressions in SimpleSelectExpression that lead to literals not being valid. Problem was that ScalarExpression() did not handle AggregateExpressions() at all, which is now fixed.
|
2011-03-27 14:04:53 +02:00 |
|
Benjamin Eberlei
|
4f1af0114f
|
[DDC-1014] Add DATE_ADD(), DATE_SUB(), DATE_DIFF() functions for DQL.
|
2011-03-27 12:18:47 +02:00 |
|
Benjamin Eberlei
|
edfdbe10a0
|
[DDC-1053] Fix bug with usage of identification variables in GroupByItem.
|
2011-03-20 14:07:33 +01:00 |
|
Guilherme Blanco
|
505d9e2154
|
[DDC-1036] Modified the AggregateExpressions to support SimpleArithmeticExpression instead of StateFieldPathExpression.
|
2011-02-20 01:44:05 -03:00 |
|
Benjamin Eberlei
|
9768d08458
|
[DDC-250] Add tests and fix some glitches and finalized index-by patch.
|
2011-02-05 11:42:10 +01:00 |
|
Benjamin Eberlei
|
fe672d2f61
|
DDC-617 - Throw error if selecting identification variables without picking at least one root entity alias.
|
2010-12-28 10:17:33 +01:00 |
|
Benjamin Eberlei
|
5e788a0b84
|
DDC-915 - Bugfix in Identification Variable reordering in combination with SQL Walkers.
|
2010-12-08 23:42:02 +01:00 |
|
Benjamin Eberlei
|
d3d3032759
|
DDC-736 - Simplified patch and extended test to verify scalar results are still in order.
|
2010-11-13 09:52:35 +01:00 |
|
Benjamin Eberlei
|
e4280cf82e
|
DDC-736 - Fix ordering of identification variables in DQL parser to be by specification.
|
2010-11-11 21:12:09 +01:00 |
|
Roman S. Borschel
|
d0717ee458
|
Fixed typo and simplified method as mentioned in an earlier comment.
|
2010-08-24 17:17:58 +02:00 |
|
Guilherme Blanco
|
496a34a4d2
|
[DDC-581] Implemented support to SingleValuedPathExpression to InExpression.
|
2010-08-12 00:16:07 -03:00 |
|
Guilherme Blanco
|
84b9eda17c
|
[DDC-680] Implemented support to complex mathematical expression in subselect part aswell as improved support of comparison expressions.
|
2010-08-11 23:12:44 -03:00 |
|
Roman S. Borschel
|
8d3e0e61ea
|
Moved association mappings to plain arrays, just like field mappings.
|
2010-08-09 22:48:07 +02:00 |
|
Roman S. Borschel
|
0424d87099
|
[DDC-386][DDC-675] Fixed.
|
2010-08-08 15:03:40 +02:00 |
|
Guilherme Blanco
|
c1fec32f58
|
[2.0][DDC-482] Added support to INSTANCE OF in DQL.
|
2010-07-30 01:30:02 -03:00 |
|
Guilherme Blanco
|
d50b3c42e2
|
[DDC-619] Removed support to complex PathExpressions.
|
2010-07-23 01:55:33 -03:00 |
|
Roman S. Borschel
|
e7ac35ed95
|
[DDC-119] Fixed.
|
2010-07-15 15:55:45 +02:00 |
|
Roman S. Borschel
|
a1c13b58d3
|
Fixed behavior of PersistentCollection#clear(). Fixed single-valued association path expression support in DQL UpdateItems.
|
2010-07-08 17:30:39 +02:00 |
|
Benjamin Eberlei
|
c1091485b0
|
DDC-618 - Bugfix INDEX BY was not yet implemented in SqlWalker
|
2010-06-29 00:06:19 +02:00 |
|
Roman S. Borschel
|
a45560dbd0
|
[DDC-505] Fixed and small lexer simplifcations that were marked as todo.
|
2010-05-18 22:19:08 +02:00 |
|
Guilherme Blanco
|
50f3435e84
|
Optimized Query AST resultant of the parsing process phase 1
|
2010-04-29 22:15:36 -03:00 |
|
Guilherme Blanco
|
841008c461
|
[2.0] Coding Standards fixes, added missing docblocks, removed some dependencies from Common package (in Annotations component), etc.
|
2010-04-23 00:51:32 -03:00 |
|
Roman S. Borschel
|
4b39705cd4
|
Fixed case-sensitivity of custom DQL functions.
|
2010-04-15 20:14:03 +02:00 |
|
Roman S. Borschel
|
01c2c06bbf
|
[DDC-512] Fixed.
|
2010-04-15 18:36:17 +02:00 |
|
Guilherme Blanco
|
955dc09cb9
|
[2.0] Optimized support to IdentificationVariable in ArithmeticPrimary
|
2010-04-14 22:03:29 -03:00 |
|
Guilherme Blanco
|
889094709e
|
[2.0] Added support to IdentificationVariable that was missing in ArithmeticPrimary (it was not correctly handling it). Uncommented a unit test that added coverage to it.
|
2010-04-14 00:04:44 -03:00 |
|
romanb
|
354ede1e04
|
[2.0][DDC-354][DDC-425] Fixed. Encapsulated SQL logging better in the DBAL. Added binding types to DBAL mapping types as well as using these binding types in the persisters. Query and NativeQuery now support PDO binding types as well as DBAL mapping types when binding parameters.
|
2010-03-29 13:20:41 +00:00 |
|