Hi Kou, That sounds fine to me. Regards Antoine. Le 01/10/2024 à 03:55, Sutou Kouhei a écrit :
Hi, The current decimal implementation omits the fractional part if the fractional part is 0. For example: "0.E+1" not "0.0E+1" Most environments such as Python, Node.js, PostgreSQL and MySQL accepts "0.E+1" but some environments such as Ruby don't accept "0.E+1". Can we use "0E+1" (omit "." and "0") or "0.0E+1" (not omit "." and "0") instead of "0.E+1 (omit "0") for broader compatibility? Related issue: https://github.com/apache/arrow/issues/44273 Thanks,