Page 1 of 1

Grouping: Inititation vs Iniciacion

Posted: Tue Oct 25, 2016 12:14 am
by therube
Inititation vs Iniciacion
AND > OR (though that doesn't seem to make a difference)

Search:

Code: Select all

ini   ia<t|c
I'm not sure what that's returning, but a LOT (as in 10's of thousands) of unexpected results?

Code: Select all

ini    ia<t|c>
Returns nothing.
Shouldn't it return, Iniciacion ?

Code: Select all

ini   <t|c>ion
Works.

Re: Grouping: Inititation vs Iniciacion

Posted: Tue Oct 25, 2016 12:49 am
by therube
OK, a space is being required before the opening angle-bracket (<).

Code: Select all

ini   ia   <t|c
ini   ia   <t|c>
ini   <t|c>ion
I don't particularly recall that being the case before?
And makes the particular original searches not work when looking for Inititation vs Iniciacion.
(Where using the space before gives unwanted results.)
Must be a (relatively long standing, now) bug.


Wish I realized this before 782b ;-).

Re: Grouping: Inititation vs Iniciacion

Posted: Tue Oct 25, 2016 12:57 am
by void
I'm thinking it's a bug, a < should terminate a search term.
ini ia<t|c>
should be:
ini AND ia AND (t OR c)

currently Everything parses it as:
ini AND ia<t OR c>

Re: Grouping: Inititation vs Iniciacion

Posted: Wed Oct 26, 2016 3:00 am
by void

Re: Grouping: Inititation vs Iniciacion

Posted: Sat Oct 29, 2016 2:22 pm
by therube
That's better, thanks.