You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: π Fixes incorrect order of fields in data class
We were reading class properties, not constructor params. That lead to
the fact, that sometimes we were reading properties in incorrect
(alphabetical) order.
β Closes: #38
thrownewIllegalArgumentException(s"Field ${prop.getName} is not found among available fields, which are: ${dataType.dt.fields.map(_.name).mkString(", ")}")
if (maybeProp.isEmpty) thrownewIllegalArgumentException(s"Field ${structField.name} is not found among available props, which are: ${properties.map(_.getName).mkString(", ")}")
0 commit comments