thswlsqls commented on PR #8610: URL: https://github.com/apache/paimon/pull/8610#issuecomment-5032905884
Thanks for catching this. You're right — precision ≤ 38 with `scale < 0` or `scale > precision` (both legal in PG 15+) still reaches the `DecimalType` constructor and throws. I'll fall back to `STRING` for those cases too (`MySqlTypeUtils` only clamps negative scale, so this is a bit stricter) and add `numeric(10,20)` / `numeric(10,-2)` tests. -- 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]
