• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

doctrine / doctrine2 / 2040 / 6
69%
master: 69%

Build:
DEFAULT BRANCH: master
Ran 27 Sep 2013 01:23AM UTC
Files 261
Run time –
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

27 Sep 2013 01:15AM UTC coverage: 87.87% (-0.004%) from 87.874%
DB=pgsql

Pull #801

travis-ci

flip111
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
```
Pull Request #801: Update SqlWalker.php fixed wrong GROUP BY clause on SQL Server platform

12684 of 14435 relevant lines covered (87.87%)

86.3 hits per line

Source Files on job 2040.6 (DB=pgsql)
  • Tree
  • List 0
  • Changed 32
  • Source Changed 3
  • Coverage Changed 32
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Build 2040
  • Travis Job 2040.6
  • 86c1aea2 on github
  • Prev Job for DB=pgsql on master (#2032.6)
  • Next Job for DB=pgsql on master (#2041.5)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc