I'm reading from a parquet file and I noticed per the schema that our dates are being read as INT96 represented as byte[12]. So when reading from the parquet file, a date will look like an Object [0, 0, 0, 0, 0, 0, 0, 0, -63, -120, 37, 0].
Does anyone know how I'd go about converting this to a usable format so I could get the date? Or if there's a way I'm supposed to tweak my s3 parquet file reader so I can get the actual date instead of that byte array?
Thanks!