Grouping: Inititation vs Iniciacion

Found a bug in "Everything"? report it here
Post Reply
therube
Posts: 4580
Joined: Thu Sep 03, 2009 6:48 pm

Grouping: Inititation vs Iniciacion

Post 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.
therube
Posts: 4580
Joined: Thu Sep 03, 2009 6:48 pm

Re: Grouping: Inititation vs Iniciacion

Post 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 ;-).
void
Developer
Posts: 15096
Joined: Fri Oct 16, 2009 11:31 pm

Re: Grouping: Inititation vs Iniciacion

Post 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>
void
Developer
Posts: 15096
Joined: Fri Oct 16, 2009 11:31 pm

Re: Grouping: Inititation vs Iniciacion

Post by void »

therube
Posts: 4580
Joined: Thu Sep 03, 2009 6:48 pm

Re: Grouping: Inititation vs Iniciacion

Post by therube »

That's better, thanks.
Post Reply