id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc,branch,changelog,apichanges,internalchanges 7699,TracQuery documentation on Query Language operators is incorrect,kamil@…,,"The documentation at [wiki:TracQuery#QueryLanguage] regarding the operators is incorrect. It says: {{{ The available operators are: || '''`=`''' || the field content exactly matches the one of the values || || '''`~=`''' || the field content contains one or more of the values || || '''`^=`''' || the field content starts with one of the values || || '''`$=`''' || the field content ends with one of the values || All of these operators can also be negated: || '''`!=`''' || the field content matches none of the values || || '''`!~=`''' || the field content does not contain any of the values || || '''`!^=`''' || the field content does not start with any of the values || || '''`!$=`''' || the field content does not end with any of the values || }}} However, these operators don't seem to work in a query. In fact, when selecting their equivalent from the custom query dropdown it seems the generated operators are in fact the other way around, with a leading `=` instead of a trailing one. It seems it really should be: {{{ The available operators are: || '''`=`''' || the field content exactly matches the one of the values || || '''`=~`''' || the field content contains one or more of the values || || '''`=^`''' || the field content starts with one of the values || || '''`=$`''' || the field content ends with one of the values || All of these operators can also be negated: || '''`=!`''' || the field content matches none of the values || || '''`=!~`''' || the field content does not contain any of the values || || '''`=!^`''' || the field content does not start with any of the values || || '''`=!$`''' || the field content does not end with any of the values || }}}",defect,new,normal,next-major-releases,general,0.11-stable,normal,,query,,,,,