WorkItem query based on modifiedDate always returns everything
I am programatically doing an RTC query. Here is a snippet of the pertinent code
recAttr = factory.findAttribute(projectArea, IItem.MODIFIED_PROPERTY, auditableClient, null);
Timestamp ts = new Timestamp(113, 5, 20, 17, 57, 0, 0);
recExpr = new AttributeExpression(recAttr, AttributeOperation.AFTER, ts);
term.add(recExpr);
The query always comes back with every item in the project area regardless of the modified time.
I created a Java application to demonstrate the problem and can attach the complete source if that would help.
recAttr = factory.findAttribute(projectArea, IItem.MODIFIED_PROPERTY, auditableClient, null);
Timestamp ts = new Timestamp(113, 5, 20, 17, 57, 0, 0);
recExpr = new AttributeExpression(recAttr, AttributeOperation.AFTER, ts);
term.add(recExpr);
The query always comes back with every item in the project area regardless of the modified time.
I created a Java application to demonstrate the problem and can attach the complete source if that would help.