#619 closed defect (fixed)
Ticket close actions invisible unless a comment was added when closing ticket.
Reported by: | Jonas Borgström | Owned by: | Jonas Borgström |
---|---|---|---|
Priority: | high | Milestone: | 0.8 |
Component: | timeline | Version: | 0.7.1 |
Severity: | major | Keywords: | |
Cc: | trac@… | Branch: | |
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
#494 was closed without a comment and doesn't show up on the timeline.
Attachments (1)
Change History (13)
comment:1 by , 20 years ago
comment:2 by , 20 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
comment:3 by , 20 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
comment:4 by , 20 years ago
Resolution: | fixed |
---|---|
Status: | closed → reopened |
comment:6 by , 20 years ago
Resolution: | fixed |
---|---|
Status: | closed → reopened |
comment:7 by , 20 years ago
Resolution: | → fixed |
---|---|
Status: | reopened → closed |
comment:8 by , 20 years ago
Turned out this due to bug in an earlier sqlite version.
from now on we should recommend/depend on SQLite ≥2.8.13
comment:9 by , 20 years ago
I'm experiencing this same issue with code from trunk [897] and SQLite 2.8.15
This may actually be a new issue with the same symptoms since it's actually a problem with the query added in [744]
The problem is:
AND t3.field = 'comment'
Since this is placed in the where clause it won't return any ticket changes where there's no associated comment. If this is moved to the t3 join it works fine.
I'll attach a patch.
by , 20 years ago
Attachment: | invisible_ticket.patch added |
---|
Test for comment field moved to join instead of where clause
comment:10 by , 20 years ago
Cc: | added |
---|---|
Resolution: | fixed |
Status: | closed → reopened |
Oops, I guess I forgot to reopen this before.
comment:11 by , 20 years ago
Owner: | changed from | to
---|---|
Status: | reopened → new |
Related bugs and checkins #530 and [744].