Miloslav Kmet
|
ae4321b4e3
|
[DDC-1572] Allow LIKE pattern to be a function or path expression
|
2011-12-29 19:51:48 +01:00 |
|
Benjamin Eberlei
|
b1b10042d2
|
Revert "Fixed issue with fetched association not being considered during changeSet calculation. Fixes DDC-1545."
This reverts commit a8478d5766 .
|
2011-12-19 16:31:26 +01:00 |
|
Guilherme Blanco
|
a8478d5766
|
Fixed issue with fetched association not being considered during changeSet calculation. Fixes DDC-1545.
|
2011-12-19 01:39:48 -05:00 |
|
Benjamin Eberlei
|
003d1410b0
|
Merge pull request #224 from doctrine/DDC-551
DDC-551 - Filter branch
|
2011-12-18 08:03:23 -08:00 |
|
Andrew Mackrodt
|
2fdb55a878
|
Added absolute namespace paths to phpdoc annotations - issue DDC-1025.
|
2011-12-11 21:56:26 +00:00 |
|
Benjamin Eberlei
|
b6d776f75d
|
DDC-551 - rework walker filtering
|
2011-12-11 21:14:09 +01:00 |
|
Alexander
|
5e91f0c1ca
|
[DDC-551] Update SQLWalker to reflect filter requirements for inheritance
|
2011-12-07 10:02:15 +01:00 |
|
Alexander
|
efe7a01482
|
[DDC-551] Fixed CS, comments by @stof
|
2011-12-05 23:00:52 +01:00 |
|
Alexander
|
f4663f4512
|
[DDC-551] Another batch of small refactorings
|
2011-12-05 22:19:54 +01:00 |
|
Alexander
|
e8d30068e2
|
[DDC-551] Various refactorings
|
2011-12-05 22:05:42 +01:00 |
|
Alexander
|
04635ad4ff
|
Merge remote-tracking branch 'upstream/master' into DDC-551
Conflicts:
lib/Doctrine/ORM/Persisters/ManyToManyPersister.php
lib/Doctrine/ORM/Persisters/OneToManyPersister.php
|
2011-12-05 21:53:34 +01:00 |
|
Alexander
|
3b7d16c60f
|
[DDC-551] General cleanup of the code.
|
2011-12-05 21:14:31 +01: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 |
|
Alexander
|
be48821e86
|
Merge remote-tracking branch 'origin/master' into DDC-551
Conflicts:
lib/Doctrine/ORM/Persisters/BasicEntityPersister.php
lib/Doctrine/ORM/Query.php
|
2011-11-23 22:43:42 +01:00 |
|
jsor
|
16aa558292
|
Remove sql conversion from where clauses and update statements
|
2011-11-21 15:08:36 +01:00 |
|
Jan Sorgalla
|
841d12e9b6
|
Move check for conversion SQL to ClassMetadataInfo
|
2011-11-20 19:50:51 +01:00 |
|
Jan Sorgalla
|
6f35679911
|
Initial implementation of Doctrine\DBAL\Types\Type::convertToDatabaseValueSQL() and Doctrine\DBAL\Types\Type::convertToPHPValueSQL() integration
|
2011-11-19 00:35:29 +01:00 |
|
Fabio B. Silva
|
aeb2ab132b
|
group by all fields when entity has foreign keys
|
2011-11-15 20:27:45 -02:00 |
|
Fabio B. Silva
|
3dd5d14977
|
Fixed DDC-1430
|
2011-11-15 14:28:57 -02:00 |
|
Guilherme Blanco
|
45d95ad130
|
Fixed wrong indentation by my previous commit.
|
2011-11-15 01:09:48 -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
|
305da5b8ff
|
Added missing indexBy.
|
2011-11-03 02:49:50 -02:00 |
|
Guilherme Blanco
|
3c31d88810
|
Major optimizations in SqlWalker code, reducing overhead, reducing lookahead checks.
|
2011-11-03 02:44:50 -02:00 |
|
Alexander
|
53055f1fb2
|
[DDC-551] Fixed a bug in the sql generation for filters
|
2011-11-02 15:15:22 +01:00 |
|
Benjamin Eberlei
|
c38d273c1f
|
Merge pull request #151 from doctrine/DDC-1385
DDC-1385
|
2011-10-31 15:10:54 -07:00 |
|
Guilherme Blanco
|
d444f0e06b
|
Micro optimization in SqlWalker.
|
2011-10-30 16:22:45 -02:00 |
|
Benjamin Eberlei
|
64d405f7dd
|
Merge origin/master into DDC-1384
|
2011-10-30 12:12:18 +01:00 |
|
Guilherme Blanco
|
0ec2cc557f
|
Implemented support to entities with association marked as @Id support in many situations. Fixed DDC-1435.
|
2011-10-29 02:00:35 -02:00 |
|
Guilherme Blanco
|
3745e948c6
|
Made SimpleSelectExpression (Literal) be included as a scalar result. More general SQL Walker optimizations.
|
2011-10-28 14:25:12 -02:00 |
|
Guilherme Blanco
|
1f06e9fca5
|
Fixed issue with SimpleSelectExpression containing Literals. This issue is related to a previously fixed ticket DDC-1079.
|
2011-10-28 12:56:14 -02:00 |
|
Alexander
|
079e2b1302
|
[DDC-1384] Fix for generating sql with aliases not longer than MaxIdentifierLength
|
2011-10-22 16:27:56 +02:00 |
|
Alexander
|
07ce4092cd
|
Merge branch 'master' into DDC-551
|
2011-10-21 12:04:29 +02:00 |
|
Benjamin Eberlei
|
8466060797
|
DDC-1385 - Add INDEX BY scalar variables on the top-level
|
2011-10-16 19:23:20 +02:00 |
|
Guilherme Blanco
|
772b413579
|
Fixed bug with boolean values being converted to string.
|
2011-10-15 00:23:55 -03:00 |
|
Alexander
|
097d573d26
|
Merge branch 'master' into DDC-551
Conflicts:
lib/Doctrine/ORM/Configuration.php
lib/Doctrine/ORM/Persisters/BasicEntityPersister.php
lib/Doctrine/ORM/Persisters/ManyToManyPersister.php
|
2011-10-14 12:33:39 +02:00 |
|
Guilherme Blanco
|
ebe933810e
|
Implemented HIDDEN support in DQL. Fixes DDC-1363.
|
2011-10-03 02:07:07 -03:00 |
|
Guilherme Blanco
|
9795cb1f0d
|
Subqueries should never add items to ResultSetMapping. Fixing possible broken inclusion.
|
2011-09-21 17:35:38 -03:00 |
|
Guilherme Blanco
|
a86038b484
|
Fixed issue with CaseExpression not working in Subselects.
|
2011-09-21 17:30:45 -03:00 |
|
Alexander
|
63a3fb5ad8
|
[DDC-551] Moved SQLFilter logic to a separate FilterCollection class
|
2011-09-15 21:38:47 +02:00 |
|
Guilherme Blanco
|
e3d133af04
|
Added getQuotedTableName() in missing places of Doctrine ORM. Fixes DDC-1365.
|
2011-09-07 01:48:19 -03:00 |
|
Guilherme Blanco
|
6bbf2d9da3
|
Added support for ResultVariable referencing in ArithmeticPrimary. Fixes DDC-1346.
|
2011-09-05 03:16:01 -03:00 |
|
Alexander
|
ed0fb4ece7
|
Merge branch 'master' into DDC-551
Conflicts:
lib/Doctrine/ORM/Persisters/OneToManyPersister.php
|
2011-08-16 16:59:48 +02:00 |
|
Alexander
|
3b1ddb0346
|
[DDC-551] Added filters to SQLWalker
|
2011-08-16 12:21:43 +02:00 |
|
Guilherme Blanco
|
6857134f36
|
Fixed issue with duplicated commas if Entity has no fields.
|
2011-08-15 12:47:17 -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 |
|
Benjamin Eberlei
|
196632978c
|
DDC-1298 - Fix bug in SQLWalker with derived entities that have no fields of their own.
|
2011-07-27 23:22:20 +02:00 |
|