Skip to content

Commit

Permalink
make named args consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrove committed Jan 13, 2021
1 parent 6905aa0 commit 2ca8133
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4743,7 +4743,7 @@ object ConvertFiles {
conf.outputFormat() match {
case "parquet" =>
csvToParquet(
spark,
spark = spark,
baseInput = conf.input(),
baseOutput = conf.output(),
coalesce = conf.coalesce,
Expand All @@ -4752,7 +4752,7 @@ object ConvertFiles {
useDecimalType = conf.useDecimals())
case "orc" =>
csvToOrc(
spark,
spark = spark,
baseInput = conf.input(),
baseOutput = conf.output(),
coalesce = conf.coalesce,
Expand Down

0 comments on commit 2ca8133

Please sign in to comment.