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?
Try urlencoding the Eye QL query, i.e. use select%20revisions%20from%20dir%20/%20where%20comment%20=%20""%20return%20count(distinct%20csid)
rather than select revisions from dir / where comment = "" return count(distinct csid)
Hope that helps,
Piotr
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.