Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
(#1416). Additionally, thanks to changes to the DBI package, you no
longer need to name each argument.

* If you accidentally pass a named vector to any of the database identifer
* If you accidentally pass a named vector to any of the database identifier
functions, those names will be automatically stripped (#1404).

* `tbl_sql(check_from)` is now deprecated.
Expand Down Expand Up @@ -199,7 +199,7 @@
* The `na_matches` argument of `semi_join()` and `anti_join()` works again
(@mgirlich, #1211).

* A `semi/anti_join()` on fitlered `y` is inlined when possible (@mgirlich, #884).
* A `semi/anti_join()` on filtered `y` is inlined when possible (@mgirlich, #884).

* Joins now work again for Pool and Oracle connections (@mgirlich, #1177, #1181).

Expand Down
2 changes: 1 addition & 1 deletion R/backend-snowflake.R
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ snowflake_grepl <- function(pattern,
check_unsupported_arg(useBytes, FALSE, backend = "Snowflake")

# https://docs.snowflake.com/en/sql-reference/functions/regexp_instr.html
# REGEXP_INSTR optional parameters: position, occurrance, option, regex_parameters
# REGEXP_INSTR optional parameters: position, occurrence, option, regex_parameters
regexp_parameters <- "c"
if(ignore.case) { regexp_parameters <- "i" }
# Snowflake needs backslashes escaped, so we must increase the level of escaping
Expand Down
2 changes: 1 addition & 1 deletion R/ident.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#'
#' @description
#' `ident()` takes strings and turns them as database identifiers (e.g. table
#' or column names) quoting them using the identifer rules for your database.
#' or column names) quoting them using the identifier rules for your database.
#' `ident_q()` does the same, but assumes the names have already been
#' quoted, preventing them from being quoted again.
#'
Expand Down
2 changes: 1 addition & 1 deletion man/ident.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading