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

Better support for string matching in Snowflake #1406

Merged
merged 5 commits into from
Dec 20, 2023

Commits on Nov 10, 2023

  1. Better support for stringr in Snowflake

     * Added support for str_starts() and str_ends() by using Snowflake's
    REGEXP_INSTR() function
     * Refactored str_detect() to use Snowflake's CONTAINS() function
    instead of hacking with REGEXP() which anchors the start and end by
    default
    nathanhaigh committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    f67a525 View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2023

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

Commits on Nov 14, 2023

  1. Better grepl support for Snowflake

    Move from using `REGEXP` to `REGEXP_INSTR` for cleaner syntax and support for
    case-insensitive search capabilities.
    nathanhaigh committed Nov 14, 2023
    Configuration menu
    Copy the full SHA
    fa76df8 View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2023

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

Commits on Dec 19, 2023

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