Parquet ParquetReadSupport passing issue
I found some issues when I was trying to use macro to generate ParquetReadSupport:
here is the repl. Could there be some bugs in the macro? The ParquetWriteSupport works through. many thanks!
scalding> case class Test( | a: Option[List[Option[String]]] | ) defined class Test
scalding> Macros.caseClassParquetSchema[Test] res8: String = "message Test { optional group a (LIST) { repeated group list { optional binary element; } } } "
scalding> val readSupport = Macros.caseClassParquetReadSupport[Test]
Did you ever find a solution for this?