Skip to content

Commit

Permalink
Fix bq_table_upload when source_format is undefined (#613)
Browse files Browse the repository at this point in the history
  • Loading branch information
apalacio9502 committed Jun 11, 2024
1 parent ef6dc0e commit e574a61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/bq-perform.R
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ bq_perform_upload <- function(x, values,
cli::cli_abort("{.arg values} must be a data frame.")
}
fields <- as_bq_fields(fields)
arg_match(source_format)
source_format <- arg_match(source_format)
check_string(create_disposition)
check_string(write_disposition)
check_string(billing)
Expand Down

0 comments on commit e574a61

Please sign in to comment.