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

Fix escaped like wildcards in like_utf8 / nlike_utf8 kernels #2258

Commits on Aug 1, 2022

  1. Fix escaped like wildcards

    Added a new function that replaces the like wildcards '%' and '_' for
    the regex counterparts before executing them. It also takes into account
    that the wildcards can be escaped, in that case, it does remove the
    escape characters and leaves the wildcards so that they are matched
    against the raw character.
    
    This is implemented iterating over all the characters of the pattern to
    figure out when it needs to be transformed or not.
    daniel-martinez-maqueda-sap committed Aug 1, 2022
    Configuration menu
    Copy the full SHA
    64b25bc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    46f80b5 View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2022

  1. Configuration menu
    Copy the full SHA
    c50a822 View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2022

  1. Configuration menu
    Copy the full SHA
    9f3e8ac View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f3dd390 View commit details
    Browse the repository at this point in the history