Skip to content

Commit

Permalink
check for cartesian error in join
Browse files Browse the repository at this point in the history
  • Loading branch information
sbfnk committed Jul 27, 2023
1 parent f885188 commit 9abb305
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions R/load_survey.r
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,9 @@ load_survey <- function(files, ...) {
all.x = TRUE
)
}, error = function(cond) {
if (!grepl("cartesian", cond$message)) {
stop(cond$message)
}
NULL
})

Expand Down

0 comments on commit 9abb305

Please sign in to comment.