query.h | query.h | |||
---|---|---|---|---|
skipping to change at line 326 | skipping to change at line 326 | |||
/** Used to store the end of a range query. */ | /** Used to store the end of a range query. */ | |||
std::string str_parameter; | std::string str_parameter; | |||
/// Position in query of this term - leaf node only | /// Position in query of this term - leaf node only | |||
Xapian::termpos term_pos; | Xapian::termpos term_pos; | |||
/// Within query frequency of this term - leaf node only | /// Within query frequency of this term - leaf node only | |||
Xapian::termcount wqf; | Xapian::termcount wqf; | |||
/** swap the contents of this with another Xapian::Query::Internal, | ||||
* in a way which is guaranteed not to throw. This is | ||||
* used with the assignment operator to make it exception | ||||
* safe. | ||||
* It's important to adjust swap with any addition of | ||||
* member variables! | ||||
*/ | ||||
void swap(Query::Internal &other); | ||||
/// Copy another Xapian::Query::Internal into self. | /// Copy another Xapian::Query::Internal into self. | |||
void initialise_from_copy(const Query::Internal & copyme); | void initialise_from_copy(const Query::Internal & copyme); | |||
void accumulate_terms( | void accumulate_terms( | |||
std::vector<std::pair<std::string, Xapian::termpos> > &terms) co nst; | std::vector<std::pair<std::string, Xapian::termpos> > &terms) co nst; | |||
/** Simplify the query. | /** Simplify the query. | |||
* For example, an AND query with only one subquery would become th e | * For example, an AND query with only one subquery would become th e | |||
* subquery itself. | * subquery itself. | |||
*/ | */ | |||
End of changes. 1 change blocks. | ||||
9 lines changed or deleted | 0 lines changed or added | |||
version.h | version.h | |||
---|---|---|---|---|
skipping to change at line 39 | skipping to change at line 39 | |||
#error The Xapian library was built with g++ 4.5.0 | #error The Xapian library was built with g++ 4.5.0 | |||
#endif | #endif | |||
#ifdef _GLIBCXX_DEBUG | #ifdef _GLIBCXX_DEBUG | |||
#error You are compiling with _GLIBCXX_DEBUG defined, but the library | #error You are compiling with _GLIBCXX_DEBUG defined, but the library | |||
#error was not compiled with this flag. The settings must match or your | #error was not compiled with this flag. The settings must match or your | |||
#error program will not work correctly. | #error program will not work correctly. | |||
#endif | #endif | |||
#endif | #endif | |||
#define XAPIAN_VERSION "1.0.13" | #define XAPIAN_VERSION "1.0.14" | |||
#define XAPIAN_MAJOR_VERSION 1 | #define XAPIAN_MAJOR_VERSION 1 | |||
#define XAPIAN_MINOR_VERSION 0 | #define XAPIAN_MINOR_VERSION 0 | |||
#define XAPIAN_REVISION 13 | #define XAPIAN_REVISION 14 | |||
#define XAPIAN_HAS_FLINT_BACKEND 1 | #define XAPIAN_HAS_FLINT_BACKEND 1 | |||
#define XAPIAN_HAS_QUARTZ_BACKEND 1 | #define XAPIAN_HAS_QUARTZ_BACKEND 1 | |||
#define XAPIAN_HAS_INMEMORY_BACKEND 1 | #define XAPIAN_HAS_INMEMORY_BACKEND 1 | |||
#define XAPIAN_HAS_REMOTE_BACKEND 1 | #define XAPIAN_HAS_REMOTE_BACKEND 1 | |||
#endif /* XAPIAN_INCLUDED_VERSION_H */ | #endif /* XAPIAN_INCLUDED_VERSION_H */ | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added | |||