Skip to content

Commit

Permalink
fix: correct regex call in make_sf_query
Browse files Browse the repository at this point in the history
- fix: correct regex call in make_sf_query (to work w/ updated stringstatic function)
  • Loading branch information
elipousson committed Mar 9, 2023
1 parent 422e3f3 commit 8e4706b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/read_sf_ext.R
Original file line number Diff line number Diff line change
Expand Up @@ -1014,7 +1014,7 @@ make_sf_query <- function(dsn = NULL,
table %||%
str_extract(
basename(dsn),
regex("[[:graph:]]+(?=\\.)")
regex("[[:graph:]]+(?=\\.)", TRUE)
)

table <-
Expand Down

0 comments on commit 8e4706b

Please sign in to comment.