Skip to content

Commit

Permalink
fix sf dbi action
Browse files Browse the repository at this point in the history
  • Loading branch information
eblondel committed Mar 15, 2021
1 parent 424cf9a commit a9d405f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/geoflow_action_writeWorkflowJobDataResource.R
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ sf_write_generic <- function(entity, config, options){
sf_write_dbi <- function(entity, config, options){
#options
createIndexes <- ifelse(!is.null(options$createIndexes), options$createIndexes, FALSE)
overwrite <- ifelse(!is.null(options$overwrite), overwrite, TRUE)
append <- ifelse(!is.null(options$append), append, TRUE)
overwrite <- ifelse(!is.null(options$overwrite), options$overwrite, TRUE)
append <- ifelse(!is.null(options$append), options$append, FALSE)
chunk.size <- ifelse(!is.null(options$chunk.size), options$chunk.size, 0L)
#function
writeWorkflowJobDataResource(
Expand Down

0 comments on commit a9d405f

Please sign in to comment.