Modify ↓
#3194 closed defect (duplicate)
"All Tickets By Milestone (Including closed)" report execution fails on PostgreSQL
Reported by: | Owned by: | daniel | |
---|---|---|---|
Priority: | normal | Milestone: | |
Component: | report system | Version: | devel |
Severity: | normal | Keywords: | |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
It fails with the following error message:
'Report execution failed: ERROR: column "modified" does not exist'
The problem is in the 'ORDER BY' statement. I temporary fixed it:
- ORDER BY (milestone IS NULL), milestone DESC, (status = 'closed'), - (CASE status WHEN 'closed' THEN modified ELSE (-1)*p.value END) DESC + ORDER BY (milestone IS NULL), milestone DESC, (status = 'closed'), changetime DESC
but I'm not sure if it's correct.
Attachments (0)
Change History (2)
comment:1 by , 18 years ago
Resolution: | → duplicate |
---|---|
Status: | new → closed |
comment:2 by , 18 years ago
Milestone: | 0.10 |
---|
Note:
See TracTickets
for help on using tickets.
A duplicate of #2123.