Krzysztof Pankowski

Results 2 comments of Krzysztof Pankowski

Reorder the columns: ` CsvSchema csvSchema = CsvSchema.builder().setUseHeader(true).setReorderColumns(true) .addColumn("name").addColumn("age").build();` or skip adding columns explicitly when using setUseHeader(true) `CsvSchema csvSchema = CsvSchema.builder().setUseHeader(true).build();`

Got the same issue, fortunately I was able to create the DevDrive from PowerShell using the following command: `Format-Volume -DriveLetter D -DevDrive` Edit: Of course first we need to create...