google-code-export / amcat

Automatically exported from code.google.com/p/amcat
0 stars 0 forks source link

show as list gives no results with multiple queries #605

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
There is something weird with certain combinations of queries in the show as 
list screen, almost as if the queries are ANDed instead of ORed:

http://postimg.org/image/kypafz3c7/

So it says 2024 articles fuond in the summary, but no articles found for the 
snippets. The specific parameters for this search were

http://amcat.vu.nl/navigator/project/217/selection
article set 4951`
Queries:
meisje* AND alcohol*
jongen* AND alcohol*
meisje* AND jongen* AND alcohol*
vrouw* AND alcohol*
man* AND alcohol*
vrouw* AND man* AND alcohol
jongere* AND alcohol*
(meisje* OR vrouw* OR dames) AND alcohol*
(man* OR jongen OR jongens OR kerels) AND alcohol*
(jongeren AND alcohol*)  NOT (vrouw OR man)
(vrouw* AND alcohol*) NOT (man OR jongeren)

Removing queries actually increases the amount of articles found in the show as 
list screen...

Original issue reported on code.google.com by nelruig...@nieuwsmonitor.net on 4 Oct 2013 at 11:01

GoogleCodeExporter commented 9 years ago
het probleem zit m in de NOT, op de een of andere manier gaat dat mis met het 
ORen. 

Ik heb lokaal een index met 4 artikelen (piet, piet, jan, klaas). De zoektermen

piet

en 

piet
jan

Geven de verwachte resultaten (2 resp 3), in zowel list als summary. Echter

piet
jan
piet NOT jan

geeft maar 2 hits, dwz de 'jan' wordt geannuleerd door de NOT jan.

piet
jan
piet NOT jan
jan NOT piet

geeft 0 hits in de list. In summary, table, etc geeft het wel gewoon de 
verwachte 3 hits. 

Original comment by vanatteveldt@gmail.com on 4 Oct 2013 at 11:21

GoogleCodeExporter commented 9 years ago
Het probleem zat in het samenvoegen van queries voor de list, daar waren geen 
haakjes gebruikt

http://code.google.com/p/amcat/source/detail?r=afa8dfc1759a504552247353a29edb871
dc633c3

Original comment by vanatteveldt@gmail.com on 4 Oct 2013 at 12:41