Skip to content

Commit

Permalink
Bug fix: Enclose table location path in quotes in Iceberg export crea…
Browse files Browse the repository at this point in the history
…te sql query (#1724)
  • Loading branch information
nikitag55 authored Feb 29, 2024
1 parent 3450204 commit 4889129
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ case class BatchExporter(downsamplerSettings: DownsamplerSettings, userStartTime
| )
| USING iceberg
| PARTITIONED BY (year, month, day, $partitionColNames, metric)
| LOCATION ${exportTableConfig.tablePath}
| LOCATION '${exportTableConfig.tablePath}'
|""".stripMargin
}

Expand Down

0 comments on commit 4889129

Please sign in to comment.