search for: queryparser_intern

Displaying 12 results from an estimated 12 matches for "queryparser_intern".

Did you mean: queryparser_internal
2009 Jan 15
2
Xapian core build failure under gcc 2.95
...fails to build like so: g++ -DHAVE_CONFIG_H -I. -I./common -I./include -I/home/dsainty/not-backed-up/pkgsrc/textproc/xapian/work/.buildlink/include -Wall -W -Wredundant-decls -Wpointer-arith -Wcast-qual -Wcast-align -Wno-long-long -Wformat-security -fno-gnu-keywords -Wundef -O2 -c queryparser/queryparser_internal.cc -Wp,-MD,queryparser/.deps/queryparser_internal.TPlo -fPIC -DPIC -o queryparser/.libs/queryparser_internal.o /data/home/olly/tmp/xapian-svn-snapshot/tags/1.0.10/xapian/xapian-core/queryparser/queryparser.lemony:25: queryparser_internal.h: No such file or directory /data/home/olly/tmp/xapian...
2008 Sep 16
0
[PATCH] Add set_max_wildcard_expansion method to the queryparser.
...| 6 ++++++ search-xapian/Xapian/QueryParser.pm | 7 +++++++ xapian-core/include/xapian/queryparser.h | 3 +++ xapian-core/queryparser/queryparser.cc | 6 ++++++ xapian-core/queryparser/queryparser.lemony | 9 +++++++++ xapian-core/queryparser/queryparser_internal.h | 4 +++- 6 files changed, 34 insertions(+), 1 deletions(-) diff --git a/search-xapian/XS/QueryParser.xs b/search-xapian/XS/QueryParser.xs index 3bec548..78edaaa 100644 --- a/search-xapian/XS/QueryParser.xs +++ b/search-xapian/XS/QueryParser.xs @@ -49,6 +49,12 @@ QueryParser::set_database(d...
2009 Jun 01
2
Xapian .lemony files
Hi All, I wanted to add a small tweak to my installation of the Query Parser. Should I be editing queryparser.lemony? I tried that and the make didn't include my change. I applied the same change to queryparser_internal.cc and it worked fine. Is the .lemony file something used internally and I can ignore? Or do I need to run something prior to make to convert the files? Thanks, Mike Boone. http://boonedocks.net/mike
2006 Mar 03
1
xapian-0.9.4 queryparser build errors after applying utf-8 patch
...=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I. -I.. -I../include -I../include -I../common -I../api -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -W -Wredundant-decls -Wundef -Wpointer-arith -Wcast-qual -Wcast-align -Wno-multichar -Wno-long-long -fno-gnu-keywords -O2 -g -pipe -m64 -MT queryparser_internal.lo -MD -MP -MF ".deps/queryparser_internal.Tpo" -c -o queryparser_internal.lo queryparser_internal.cc; \ then mv -f ".deps/queryparser_internal.Tpo" ".deps/queryparser_internal.Plo"; else rm -f ".deps/queryparser_internal.Tpo"; exit 1; fi g++ -DHAVE_CONFIG...
2011 Dec 14
1
How to enable stemming with default_op set to OP_NEAR
...hrase. Then I wanna see how the search results looks with this setting compared to those with OP_AND as default_op. However, even I managed to index stemmed terms with position information I couldn't find where to make changes to enable stemming in queryparser. I checked with queryparser.cc and queryparser_internal.cc, but haven't find the exact piece of codes which disabled stemming when default_op is OP_NEAR. So I guess maybe someone here could offer some help, and I really appreciate your time! Thanks, Shen -------------- next part -------------- An HTML attachment was scrubbed... URL:...
2006 Apr 05
1
build error : xapian-core-0.9.4_svn6707 with UTF-8 patch
...------------------------ g++ -DHAVE_CONFIG_H -I. -I. -I.. -I../include -I../include -I../common -I../api -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -W -Wredundant-decls -Wundef -Wpointer-arith -Wcast-qual -Wcast-align -Wno-multichar -Wno-long-long -fno-gnu-keywords -g -O2 -MT queryparser_internal.lo -MD -MP -MF .deps/queryparser_internal.Tpo -c queryparser_internal.cc -fPIC -DPIC -o .libs/queryparser_internal.o In file included from /usr/include/glib-2.0/glib/gquark.h:30, from /usr/include/glib-2.0/glib/gerror.h:24, from /usr/include/glib-2.0/glib/guni...
2011 Mar 23
1
how to change the default operator?
Hi all, I'm sorry to bother you guys with such a rookie question. I tried to change the default boolean operator by editing the file queryparser.h like this: void set_default_op(Query::op OP_AND); However, after rebuilding I tested it with the query "grad school" and it still worked with the OP_OR as default, like this: Parsed query is: Xapian::Query((Zgrad:(pos=1) OR
2010 Oct 28
1
hypens in words + NEAR + 3 terms + AND_MAYBE => crash
...out>, yypminor=0x386a7f8) at queryparser/queryparser.lemony:1256 #2 yy_destructor (yypParser=0x2b58170, yymajor=<value optimized out>, yypminor=0x386a7f8) at queryparser/queryparser.lemony:1933 #3 0x00007faab7501f0c in yy_pop_parser_stack (pParser=0x2b58170) at queryparser/queryparser_internal.cc:2039 #4 0x00007faab750cf58 in ParserHandler::~ParserHandler() () from /usr/local/lib/libxapian.so.22 #5 0x00007faab7508e0d in Xapian::QueryParser::Internal::parse_query ( this=0x38b7a90, qs=..., flags=0, default_prefix=<value optimized out>) at queryparser/queryparser.lem...
2011 Sep 19
2
New scws patch for xapian-core based on svn trunk
Hi, I have already re-make the patch file, based on the trunk codes in SVN respo. But I can not build the xapian, because there are many errors when building 'languages/' for stemmer. Therefore, I could not test the new patching code. Patching code can be accessed from: http://www.xunsearch.com/download/xapian-scws-1.3.x-trunk.patch Need to install SCWS first as below steps: 1.
2007 Oct 19
1
Re: [Xapian-commits] 9476: trunk/xapian-core/ trunk/xapian-core/include/xapian/ trunk/xapian-core/queryparser/ trunk/xapian-core/tests/
...t: svn://svn.xapian.org/xapian > 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 t...
2017 Mar 15
2
xapian core missing link to math on MSYS2
...net/.libs/remoteserver.o net/.libs/remotetcpclient.o net/.libs/remotetcpserver.o net/.libs/replicatetcpclient.o net/.libs/replicatetcpserver.o net/.libs/serialise-error.o net/.libs/tcpclient.o net/.libs/tcpserver.o queryparser/.libs/cjk-tokenizer.o queryparser/.libs/queryparser.o queryparser/.libs/queryparser_internal.o queryparser/.libs/termgenerator.o queryparser/.libs/termgenerator_internal.o unicode/.libs/description_append.o unicode/.libs/unicode-data.o unicode/.libs/utf8itor.o weight/.libs/bb2weight.o weight/.libs/bm25plusweight.o weight/.libs/bm25weight.o weight/.libs/boolweight.o weight/.libs/coordweig...
2006 Apr 06
2
build error : xapian-core-0.9.4_svn6707
...libs/libxapian.lax/libnet.a/omerr_string.o .libs/libxapian.lax/libnet.a/omlinebuf.o .libs/libxapian.lax/libnet.a/socketserver.o .libs/libxapian.lax/libnet.a/tcpserver.o .libs/libxapian.lax/libnet.a/progserver.o .libs/libxapian.lax/libqueryparser.a/queryparser.o .libs/libxapian.lax/libqueryparser.a/queryparser_internal.o ranlib .libs/libxapian.a rm -fr .libs/libxapian.lax creating libxapian.la (cd .libs && rm -f libxapian.la && ln -s ../libxapian.la libxapian.la) make[2]: *** No rule to make target `xapian-config.1', needed by `all-am'. Stop. make[2]: Leaving directory `/home/kiss/down...