flip111
72ae7f5497
Changed GroupBy alias to real column name for all platforms and adjusted failing test accordingly. Has fallback in cases where real column name is not possible (example: Doctrine\Tests\ORM\Query\SelectSqlGenerationTest::testGroupBySupportsIdentificationVariable)
2013-09-30 11:08:42 +02:00
flip111
76fda9562c
Update SqlWalker.php fixed wrong GROUP BY clause on SQL Server platform
...
Without this patch a query would like like:
```
SELECT c0_.Country AS sclr0
FROM Continent c0_ WITH (NOLOCK)
WHERE c0_.Country = 38
GROUP BY sclr0
```
Using the column alias in the GROUP BY clause. However this is not allowed on SQL Server. References:
1. http://stackoverflow.com/a/3841804
2. http://technet.microsoft.com/en-us/library/ms189499.aspx (Logical Processing Order of the SELECT statement)
The correct query should be:
```
SELECT c0_.Country AS sclr0
FROM Continent c0_ WITH (NOLOCK)
WHERE c0_.Country = 38
GROUP BY c0_.Country
```
2013-09-26 14:11:56 +02:00
Guilherme Blanco
bd7c7ebaf3
Merge pull request #799 from FabioBatSilva/leftover-test
...
remove unused test case
2013-09-23 18:10:22 -07:00
Fabio B. Silva
614eed7f86
remove unused test case
2013-09-23 19:29:50 -04:00
Marco Pivetta
2089df36e3
Merge pull request #795 from sabzeta/patch-1
...
Update query-builder.rst
2013-09-20 11:05:38 -07:00
sabzeta
a419c7c93b
Update query-builder.rst
...
expresion substr changed to substring as of
http://www.doctrine-project.org/jira/browse/DDC-382
2013-09-20 15:27:05 +03:00
Benjamin Eberlei
fe78977973
Merge pull request #790 from javer/hhvm-func_get_args
...
HHVM compatibility: func_get_args
2013-09-15 11:05:01 -07:00
javer
64a0161935
HHVM compatibility: func_get_args
...
All func_get_args() calls have been moved to the top of the methods
because HHVM doesn't keep a copy of the original args for performance
reasons.
See facebook/hiphop-php#1027 for details.
2013-09-15 20:57:30 +03:00
Marco Pivetta
c72698a997
Merge pull request #786 from weaverryan/patch-1
...
Minor updates while reading the basic-mapping page
2013-09-12 19:11:37 -07:00
Ryan Weaver
1fcef3321e
Changes thanks to @Ocramius
2013-09-12 20:52:12 -05:00
Ryan Weaver
36d7d60c3b
Minor updates while reading the basic-mapping page
...
The only arguable changes involve a few spots where I either removed something I thought was too technical and not valuable (e.g. talking about the metadata mapping pattern).
2013-09-12 17:08:48 -05:00
Benjamin Eberlei
067ed7b1c6
Fix master dependening on DBAL 2.5-dev
2013-09-12 08:00:08 +02:00
Benjamin Eberlei
b6e624b6bf
Delete some very old, leftover code.
2013-09-11 22:43:38 +02:00
Marco Pivetta
237c1e24e6
Merge pull request #785 from Hawkeye0203/patch-1
...
Update dql-custom-walkers.rst
2013-09-11 07:32:58 -07:00
Daniel VanMullen
ef722066e3
Update dql-custom-walkers.rst
...
Fixed typo of "customer" to "custom"
2013-09-11 09:25:52 -04:00
Marco Pivetta
bb7f18ced7
Merge pull request #784 from eventhorizonpl/fix_docs
...
fix documentation warnings p1
2013-09-10 15:54:40 -07:00
Michal Piotrowski
bc37ceb58b
fix warnings p1
...
fix warnings p2
fix warnings p3
fix warnings p4
2013-09-10 23:57:41 +02:00
Benjamin Eberlei
9983fcbac3
Fix some more details in basic-mapping.rst
2013-09-10 23:15:43 +02:00
Benjamin Eberlei
a948cb49b8
Small fixes in basic-mapping.rst
2013-09-10 22:36:03 +02:00
Benjamin Eberlei
546c817f64
Move Custom Mapping Types into cookbook, restructure the chapter more.
2013-09-10 22:09:22 +02:00
Benjamin Eberlei
caf6ba65e8
Refactor Basic Mapping chapter to focus on the actual topic more. Rearrange apperance of topics. Introduce a sane example entity as example.
2013-09-10 22:09:22 +02:00
Benjamin Eberlei
f7108b40c3
Move Annotations introduction to the reference.
2013-09-10 22:09:22 +02:00
Marco Pivetta
4d51a0290b
Merge pull request #782 from mnapoli/patch-4
...
#DDC-2664 Document new Proxy factory flags usage as of DCOM-210
2013-09-09 03:35:17 -07:00
Marco Pivetta
0d246f7e9e
Merge pull request #783 from mnapoli/DDC-2664
...
#DDC-2664 Improving and fixing documentation for new Proxy factory flags usage as of DCOM-210
2013-09-09 03:13:56 -07:00
Matthieu Napoli
8875462241
#DDC-2664 Improving and fixing documentation for new Proxy factory flags usage as of DCOM-210
2013-09-09 11:30:18 +02:00
Matthieu Napoli
26e1ac6afd
#DDC-2664 Improving and fixing documentation for new Proxy factory flags usage as of DCOM-210
2013-09-09 11:20:12 +02:00
Matthieu Napoli
4a0a4094da
#DDC-2664 Document new Proxy factory flags usage as of DCOM-210
...
[Document new Proxy factory flags usage as of DCOM-210](http://www.doctrine-project.org/jira/browse/DDC-2664 )
2013-09-09 10:49:37 +02:00
Marco Pivetta
87d2ff8665
Merge pull request #781 from shieldo/patch-2
...
fixed English grammar
2013-09-08 13:47:39 -07:00
Douglas Greenshields
85f227372d
fixed English grammar
2013-09-08 21:40:35 +01:00
Benjamin Eberlei
4a50493ab7
[DDC-2608][DDC-2662] Fix SequenceGenerator requiring "sequenceName" and now throw exception. Fix a bug in quoting the sequenceName.
2013-09-08 15:59:58 +02:00
Benjamin Eberlei
c6760e0375
Merge pull request #762 from naitsirch/yaml_reference_ext
...
YAML mapping documentation of uniqueConstraint
2013-09-08 06:22:42 -07:00
Benjamin Eberlei
3770019e0b
Merge branch 'DDC-2660'
2013-09-08 14:39:10 +02:00
Benjamin Eberlei
5c2157219d
[DDC-2660] Fix error with NativeSQL, ResultSetMappingBuilder and Associations as Primary Key.
2013-09-08 14:38:59 +02:00
Benjamin Eberlei
f2fa47dedb
Fix RST bug
2013-09-08 13:04:08 +02:00
Benjamin Eberlei
275724fb46
Add missing documentation for 2.4 features
2013-09-08 12:13:47 +02:00
Benjamin Eberlei
6fcc091f88
Merge branch 'DDC-2661'
2013-09-08 10:37:23 +02:00
Benjamin Eberlei
3719a6f2f2
[DDC-2661] Fix bug in YamlDriver not passing options from id to mapField()
2013-09-08 10:37:13 +02:00
Benjamin Eberlei
fab3f5e146
More excludes
2013-09-07 18:27:27 +02:00
Benjamin Eberlei
90c89b3881
Travis should prefer dist.
2013-09-07 13:21:02 +02:00
Benjamin Eberlei
6139a61ff0
New Build process
...
- Switch from Phing to Ant
- Remove PEAR packaging
- Add Composer archiving
2013-09-07 12:56:49 +02:00
Benjamin Eberlei
490b501679
Fix tests running against Oracle not comparing SQL case-insenstive
2013-09-07 08:52:50 +02:00
Guilherme Blanco
da7146c4d5
Merge pull request #779 from Blazinn/patch-4
...
Fixed grammar in custom data types
2013-09-05 07:31:19 -07:00
Guilherme Blanco
7ed22819b5
Merge pull request #778 from Blazinn/patch-3
...
Fixed typo in property mapping
2013-09-05 07:29:43 -07:00
Nick Hazen
e808865e6f
Fixed grammar in custom data types
...
Changed 'are apply' to 'are applied'
2013-09-05 10:09:53 -04:00
Nick Hazen
1d247fbeaa
Fixed typo in property mapping
...
Changed 'pecify' to 'specify' line # 246
2013-09-05 09:48:00 -04:00
Guilherme Blanco
0a07207f59
Merge pull request #777 from Blazinn/patch-2
...
Fixed typo in mapping documentation
2013-09-05 06:43:28 -07:00
Nick Hazen
982840ac3c
Fixed typo in mapping documentation
...
"Classthat" to "Class that" line #69
2013-09-05 09:32:36 -04:00
Marco Pivetta
0a9ff77303
Merge pull request #775 from Blazinn/patch-1
...
Update create bug script
2013-09-04 15:18:36 -07:00
Nick Hazen
528fe40839
Update create bug script
...
This script is using the first argument twice and ignoring the second argument completely.
2013-09-04 16:55:06 -04:00
Benjamin Eberlei
340ae15ba7
Merge branch 'Docs'
2013-09-01 19:04:22 +02:00