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

doctrine / doctrine2 / 2040 / 7
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: 86.736% (-0.003%) from 86.739%
DB=sqlite

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

12516 of 14430 relevant lines covered (86.74%)

84.58 hits per line

Source Files on job 2040.7 (DB=sqlite)
  • 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.7
  • 86c1aea2 on github
  • Prev Job for DB=sqlite on master (#2032.7)
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