Skip to content

Commit

Permalink
Some missing options in SnowflakeIO (#5550)
Browse files Browse the repository at this point in the history
  • Loading branch information
turb authored Jan 23, 2025
1 parent db7b14e commit d5d20ad
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@ final case class SnowflakeTable[T](connectionOptions: SnowflakeConnectionOptions
.pipe(w => Option(params.flushTimeLimit).fold(w)(w.withFlushTimeLimit))
.pipe(w => Option(params.quotationMark).fold(w)(w.withQuotationMark))
.pipe(w => Option(params.storageIntegrationName).fold(w)(w.withStorageIntegrationName))
.pipe(w => Option(params.tableSchema).fold(w)(w.withTableSchema))
.withStagingBucketName(tempDirectory)
.withUserDataMapper(userDataMapper)
.pipe(w => Option(params.configOverride).fold(w)(_(w)))
Expand Down

0 comments on commit d5d20ad

Please sign in to comment.