Index: ext/fts3/README.syntax ================================================================== --- ext/fts3/README.syntax +++ ext/fts3/README.syntax @@ -20,13 +20,13 @@ as part of the query text (see sections 2 and 3 below). As of SQLite version 3.6.8, Fts3 supports two slightly different query formats; the standard syntax, which is used by default, and the enhanced query syntax which can be selected by compiling with the pre-processor - symbol SQLITE_FTS3_ENABLE_PARENTHESIS defined. + symbol SQLITE_ENABLE_FTS3_PARENTHESIS defined. - -DSQLITE_FTS3_ENABLE_PARENTHESIS + -DSQLITE_ENABLE_FTS3_PARENTHESIS 2. STANDARD QUERY SYNTAX When using the standard Fts3 query syntax, a query usually consists of a list of terms (words) separated by white-space characters. To match a @@ -205,8 +205,5 @@ MATCH 'sqlite NEAR (fantastic OR impressive)' Queries of this form must be re-written as: MATCH 'sqlite NEAR fantastic OR sqlite NEAR impressive' - - -