Displaying 12 results from an estimated 12 matches for "queryparsertest".
2015 Jan 25
2
TestCases Failure
...s with porter stemmer...
Running tests with portuguese stemmer...
Running tests with romanian stemmer...
Running tests with russian stemmer...
Running tests with spanish stemmer...
Running tests with swedish stemmer...
Running tests with turkish stemmer...
PASS: stemtest
Running test './queryparsertest' under eatmydata and valgrind
Running test: qp_spell1...FAIL: queryparsertest
Running test './termgentest' under eatmydata and valgrind
Running test: tg_spell1...FAIL: termgentest
Running test './unittest' under eatmydata and valgrind
PASS: unittest
==========================...
2015 Jan 26
2
TestCases Failure
...ing testcases (to verify everthing is working fine), It says 3 out
> of
> > the six testcases fails. Here is the report of the test cases.
>
> > Running tests with backend "inmemory"...
> > Running test: topercent2...FAIL: apitest
>
> > Running test './queryparsertest' under eatmydata and valgrind
> > Running test: qp_spell1...FAIL: queryparsertest
>
> > Running test './termgentest' under eatmydata and valgrind
> > Running test: tg_spell1...FAIL: termgentest
>
> Is this with git master (if not, what version of Xapian)?
>...
2010 Aug 28
1
Partial search on prefixed data
Hello everyone,
I'm trying to do an "Auto-complete" widget for the search field on a
website, which has Xapian running behind it. (Using the PHP bindings.)
I have the name of a search result prefixed with "name", so as the user
types, it triggers a search for "name:whatever the user put in".
This seems like an ideal use for the FLAG_PARTIAL flag; in fact the
2015 Sep 11
0
xapian-core-1.0.23 compiled on Interix / Eric Lindblad
Report by Eric Lindblad 11-09-2015
http://www.ericlindblad.blogspot.com
I compiled xapian-core-1.0.23 today on Interix.
'gmake check' summary
PASS: btreetest, quartztest, stemtest, termgentest
FAIL: apitest, internaltest, queryparsertest
MS XP SP3 HOME
modified SFU Interix 3.5 w/ getopt.h, inttypes.h, & stdint.h copied
over from SUA Interix for Vista (and newer) into C:\SFU\usr\include
- SFU Interix 3.5 sys/types.h and SUA for Vista (& newer) sys/types.h
are not identical files - make-3.81 as --prefix=/usr --program-pref...
2006 Dec 06
1
Bug and patch for +terms with wildcards
...case Xapian::Query::OP_MATCH_NOTHING: {
+ Assert(query->subqs.size() == 0);
+ LeafPostList *pl = new EmptyPostList();
+ pl->set_termweight(new Xapian::BoolWeight());
+ RETURN(pl);
+ }
}
Assert(false);
RETURN(NULL);
Index: tests/queryparsertest.cc
===================================================================
--- tests/queryparsertest.cc (revision 7552)
+++ tests/queryparsertest.cc (working copy)
@@ -655,7 +655,7 @@
qobj = queryparser.parse_query("muscle*", Xapian::QueryParser::FLAG_WILDCARD);
TEST_EQUAL(qobj.get_...
2015 Sep 11
1
xapian 1.0.x compiled on Interix / Eric Lindblad
Report by Eric Lindblad 11-09-2015
http://www.ericlindblad.blogspot.com
I compiled xapian-core-1.0.23 today on Interix.
'gmake check' summary
PASS: btreetest, quartztest, stemtest, termgentest
FAIL: apitest, internaltest, queryparsertest
MS XP SP3 HOME
modified SFU Interix 3.5 w/ getopt.h, inttypes.h, & stdint.h copied
over from SUA Interix for Vista (and newer) into C:\SFU\usr\include
- SFU Interix 3.5 sys/types.h and SUA for Vista (& newer) sys/types.h
are not identical files - make-3.81 as --prefix=/usr --program-prefi...
2008 Aug 21
1
wildcards and prefix searches
Hey all,
I'm using Xapian through acts_as_xapian and would like to know why
trailing wildcards do not work on prefix searches.
Specifically, I have a Merchant model with a Description field, mapped
to the prefix "desc".
If I then search for "desc:goods" I get 4 matches, but if I search for
"desc:goo*" I get 0.
However, when searching normal, non-prefixed
2016 Dec 11
0
old stable configure & make_check logs
...ackend remotetcp_chert: All 227 tests passed, 3 skipped.
./apitest backend remoteprog_flint: All 221 tests passed, 2 skipped.
./apitest backend remotetcp_flint: All 221 tests passed, 2 skipped.
./apitest total: All 3019 tests passed, 45 skipped.
PASS: apitest
PASS: internaltest
PASS: stemtest
PASS: queryparsertest
PASS: termgentest
PASS: unittest
==================
All 6 tests passed
==================
2015 Sep 15
0
xapian porting to Interix / conclusion
...tests passed, 2 failed, 5 skipped.
./apitest backend remoteprog_flint: 137 tests passed, 82 failed, 2 skipped.
./apitest backend remotetcp_flint: 199 tests passed, 20 failed, 2 skipped.
./apitest total: 1059 tests passed, 116 failed, 19 skipped.
FAIL: apitest
FAIL: internaltest
PASS: stemtest
FAIL: queryparsertest
PASS: termgentest
resolverelativepath1 ... ok
PASS: unittest
The disabling of brass and chert backends (the same mailing-list member noting that compile of
1.2.x with just flint support being of somewhat limited use) was due to an earlier encountered
'ambiguous overload' error on brass_che...
2015 Oct 07
0
brass and chert compiled / xapian port to Interix
...d remotetcp_chert: 202 tests passed, 23 failed, 3 skipped.
./apitest backend remoteprog_flint:
./apitest backend remotetcp_flint: 197 passed, 22 failed, 2 skipped.
./apitest total: 2661 tests passed, 333 failed, 44 skipped.
FAIL: apitest
FAIL: internaltest
The random seed is 42
PASS: stemtest
FAIL: queryparsertest
PASS: termgentest
resolverelativepath1 ... ok
PASS: unittest
Running test: adddoc1... FAILED
Running test: bm25weight4... FAILED
Running test: bm25weight5... FAILED
Running test: decvalwtsource1... FAILED
Running test: decvalwtsource2... FAILED
Running test: expandweights4... FAILED
Running test:...
2007 Oct 19
1
Re: [Xapian-commits] 9476: trunk/xapian-core/ trunk/xapian-core/include/xapian/ trunk/xapian-core/queryparser/ trunk/xapian-core/tests/
...n
> Changes by: olly
> Revision: 9476
> Date: 2007-10-19 03:47:11 +0100 (Fri, 19 Oct 2007)
>
> Log message (14 lines):
> include/xapian/queryparser.h,queryparser/queryparser.cc,
> queryparser/queryparser.lemony,queryparser/queryparser_internal.h,
> tests/queryparsertest.cc: Since calling QueryParser::add_prefix()
> or QueryParser::add_boolean_prefix() a second time with the same
> field name was ignored before (rather than overriding as we had
> thought) it seems reasonable to change this behaviour. This
> also avoids the need to deprecate these metho...
2011 Apr 17
3
Report for http://trac.xapian.org/wiki/SupportedPlatforms
...with russian stemmer...
Running test: stemdict... SKIPPED
Running tests with spanish stemmer...
Running test: stemdict... SKIPPED
Running tests with swedish stemmer...
Running test: stemdict... SKIPPED
Running tests with turkish stemmer...
Running test: stemdict... SKIPPED
PASS: stemtest
PASS: queryparsertest
PASS: termgentest
resolverelativepath1 ... ok
PASS: unittest
==================
All 6 tests passed
==================
For the installation, used a custom script:
=== script begins ===
#! /bin/bash
if [[ $PWD != '/tmp/xapian-omega-1.2.4' ]]; then
echo "In wrong directory!"...