Bug#761867: Webapp: Add conjunctive search for ctags

2015-03-13 Thread Stefano Zacchiroli
[ just documenting here a quick summary of IRC discussions ] On Thu, Mar 12, 2015 at 02:33:03PM +0100, Orestis Ioannou wrote: I have attached the patch for the conjunctive search. Raw sql commands are the following: The patch looks good, but there are concerns that this feature will allow to

Bug#761867: Webapp: Add conjunctive search for ctags

2015-03-12 Thread Orestis Ioannou
Hello, I have attached the patch for the conjunctive search. Raw sql commands are the following: First I find files with the ctags. (there are 2 tags in the following case) SELECT ctags.file_id AS file_id FROM ctags JOIN files ON files.id = ctags.file_id WHERE ctags.tag IN (:tag_1, :tag_2)