I have a requirement to get all the files where few lines are removed from existing code( branch) using fisheye search criteria. I don't see this option now.
my search should look some thing like this
path like "*.xsd" and linesRemoved > 0
Thanks for the info. Is there a way to filter the data with linesRemoved>0 on results?
I'm afraid no way to filter the data on linesRemoved>0 in FishEye product, that's why I recommended filtering externally in my answer.
Use the "Download results as CSV" link to download results as csv file and use the tools of your choice to do the filtering. E.g. you can use curl and grep:
$ curl -s 'https://fisheye6.atlassian.com/search/flex-falcon/?ql=select%20revisions%0D%0Awhere%20date%20in%20%5B%202016-09-01%2C%202016-09-07%20%5D%0D%0Areturn%20path%2C%20linesRemoved%0D%0A&csv=true' | grep -Ev ',0\s*$' "path","linesRemoved" "compiler/src/main/java/org/apache/flex/abc/print/ABCDumpVisitor.java",7 "compiler/src/main/java/org/apache/flex/compiler/internal/units/requests/ABCBytesRequestResult.java",1 "compiler/src/main/java/org/apache/flex/swf/io/SWFDump.java",5 ...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi
I don't think you can use linesRemoved in the WHERE clause of EyeQL query, see https://confluence.atlassian.com/display/FISHEYE/EyeQL+reference+guide, linesRemoved can only be used in return clauses.
Perhaps you want to consider workaround to retrieve all the files and their removed lines count, so you can filter externally?
Take a look at example queries:
Hope that helps,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.