#2103 closed defect (fixed)
Can't filter on "Up to date" column for cloned reporters in an experiment
Reported by: | Nicklas Nordborg | Owned by: | everyone |
---|---|---|---|
Priority: | minor | Milestone: | BASE 3.12 |
Component: | core | Version: | |
Keywords: | Cc: |
Description (last modified by )
Unknown function: rep() Unknown function: mrep() in formula rep("version")==mrep("version")
Change History (3)
comment:1 by , 7 years ago
comment:2 by , 7 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
(In [7433]) Fixes #2103: Can't filter on "Up to date" column for cloned reporters in an experiment
Moved th JepFunction[] getJepFunctions()
method from DynamicQuery
to AbstractSqlQuery
and implmented it for DynamicReportQuery
and DynamicRawDataQuery
.
This seems to fix the issue in the given situation and should also prevent somthing similar from happening to raw data queries.
comment:3 by , 7 years ago
Description: | modified (diff) |
---|---|
Summary: | Can' filter on "Up to date" column for cloned reporters in an experiment → Can't filter on "Up to date" column for cloned reporters in an experiment |
Note:
See TracTickets
for help on using tickets.
I think this is related to both #2045 and #1461. The changes in #1461 was never implemented for reporter queries (since there was no "dynamic" reporters at that time). The change in #2045 broke the cloned reporters query since the feature that adds custom functions requires a
DynamicQuery
(or a subclass).