carloea2 commented on issue #4106: URL: https://github.com/apache/texera/issues/4106#issuecomment-3693424964
Reason: `fieldValue` is a **`java.time.LocalDateTime`**, not a `java.sql.Timestamp`. The debugger shows `"2027-01-30T11:44:43"` because that’s `LocalDateTime.toString`, but Scala pattern matching checks the **real runtime type**, so none of the `String` / `Long` / `Timestamp` / `Date` cases match and it falls into `case _ =>` and throws. https://github.com/apache/texera/blob/4f822e376afb40be3c6035762d98d7851f995dee/common/workflow-core/src/main/scala/org/apache/texera/amber/core/tuple/AttributeTypeUtils.scala#L200-L212 <img width="1114" height="784" alt="Image" src="https://github.com/user-attachments/assets/8363bf16-22b7-4699-8353-b5e0e0430682" /> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
