Merge pull request '[SDG-FOS] to import SDG file not considering the header' (#182) from SDG into beta

Reviewed-on: #182
pull/185/head
Miriam Baglioni 2 years ago
commit 93f26fb742

@ -69,6 +69,8 @@ public class GetSDGSparkJob implements Serializable {
.read()
.format("csv")
.option("sep", delimiter)
.option("inferSchema", "true")
.option("header", "true")
.option("quotes", "\"")
.load(sourcePath);

Loading…
Cancel
Save