J. Matthew Pryor

Results 3 comments of J. Matthew Pryor

What about the idea of support dot notation in the schema? ``` CsvSchema schema = CsvSchema.builder() .addColumn("person.firstName") .addColumn("person.firstName") .addColumn("person.age", CsvSchema.ColumnType.NUMBER) .build(); ``` Could that work for writing CSV? Any code...

One simple, but manual solution might be to allow dot notation in the Schema Builder ``` CsvSchema schema = CsvSchema.builder() .addColumn("person.firstName") .addColumn("person.firstName") .addColumn("person.age", CsvSchema.ColumnType.NUMBER) .build(); ``` That would allow for...