Commits


Sutou Kouhei authored and GitHub committed d4516c5386f
GH-44273: [C++][Decimal] Use 0E+1 not 0.E+1 for broader compatibility (#44275) ### Rationale for this change 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`. More environments accept `0.0E+1` or `0E+1` than `0.E+1`. ### What changes are included in this PR? Use `0E+1` not `0.E+1` for broader compatibility. ### Are these changes tested? Yes. ### Are there any user-facing changes? Yes. * GitHub Issue: #44273 Authored-by: Sutou Kouhei <kou@clear-code.com> Signed-off-by: Sutou Kouhei <kou@clear-code.com>