Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[feature](inverted index) Add multi_match function (#37722) #38877

Merged
merged 3 commits into from
Aug 10, 2024

Commits on Aug 9, 2024

  1. [feature](inverted index) Add multi_match function (apache#37722)

    1. select * from tbl where multi_match(c1, 'c2, c3, c4',
    'phrase_prefix', 'xxx');
    2. multi_match performs a match_phrase_prefix query on the columns
    specified in the first and second parameters. The value to be searched
    is specified in the fourth parameter.
    zzzxl1993 committed Aug 9, 2024
    Configuration menu
    Copy the full SHA
    16f6d4b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2486218 View commit details
    Browse the repository at this point in the history
  3. [fix](inverted index) multi match distinguishes the inverted index v1…

    … and v2 (apache#39149)
    
    ## Proposed changes
    
    1. reversed Index v1 and v2 have different column names
    zzzxl1993 committed Aug 9, 2024
    Configuration menu
    Copy the full SHA
    ff3378d View commit details
    Browse the repository at this point in the history