Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add compound full-text index search capabilities
Previously there was no support for compound full-text index search capabilities. This extension handles these indexes by allowing sub-arrays within the existing `SearchUsingFullText` attribute. Example: Assuming we have a 2 column full-text index ("col_a", "col_b") and a single full-text index "col_b": `#SearchUsingFullText([["col_a", "col_b"], "col_c"])` will result in a SQL query like: MATCH (`t`.`col_a`, `t`.`col_b`) AGAINST ('term' IN <NLM>) OR MATCH (`t`.`col_c`) AGAINST ('term' IN <NLM>) NOTE: Previous usages of this attribute will be not affected by this change.
- Loading branch information