I am trying to retrieve a date field from a postgresql table but I couldn't get the value. My code: `val ts = row.get[LocalDateTime]("ts")` If I change to: `val ts = row.get[String]("ts")` It had strange characters. I see the date value in postgres table and the record was inserted with finagle-postgres library.