Skip to content

Commit

Permalink
Snowflake Loader: fix loading path used with temp creds auth method (c…
Browse files Browse the repository at this point in the history
…lose #1002)
  • Loading branch information
spenes committed Jul 24, 2022
1 parent e22f235 commit 93f00da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ object Snowflake {

case s: Statement.EventsCopyToTempTable =>
val frCopy = Fragment.const0(s"${qualify(s.table)}($TempTableColumn)")
val frPath = Fragment.const0(s.path)
val frPath = Fragment.const0(s.path.append("output=good"))
val frCredentials = loadAuthMethodFragment(s.tempCreds)
val frOnError = buildErrorFragment(s.typesInfo)
val frFileFormat = buildFileFormatFragment(s.typesInfo)
Expand Down

0 comments on commit 93f00da

Please sign in to comment.