Skip to content

Commit

Permalink
Better suport for string matching in Snowflake (#1406)
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanhaigh committed Dec 19, 2023
1 parent 72bf315 commit 1335872
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# dbplyr (development version)

* Snowflake (@nathanhaigh, #1406)
* Added support for `str_starts()` and `str_ends()` via `REGEXP_INSTR()`
* Refactored `str_detect()` to use `REGEXP_INSTR()` so now supports
regular expressions.
* Refactored `grepl()` to use `REGEXP_INSTR()` so now supports
case-insensitive matching through `grepl(..., ignore.case = TRUE)`

* Functions qualified with the base namespace are now also translated, e.g.
`base::paste0(x, "_1")` is now translated (@mgirlich, #1022).

Expand Down

0 comments on commit 1335872

Please sign in to comment.