In Fisheye(3.5.3), when I try to search for commits without comments using EyeQL - the results on the browser is perfect, but when I try to implement the same thing through a java program, I get errors.
My Query is: select revisions from dir / where comment = "" return count(distinct csid)
On the browser I see:
browser.png
When I print the URL and the InputStream in Java I get the following output:
java.png
<error> error parsing query: expecting "revisions", found 'null'</error>
Any idea why I get this error?
Is this a bug?