Fix decimal v3 precision loss issues in the multi-catalog module. Now it will use decimal v3 to represent decimal type in the multi-catalog module. Regression Test: `test_load_with_decimal.groovy`
354 B
354 B
| 1 | 1 | 1.1234 | 12.123456 | 123.123456789876 | 12 | 1234.123456789 | 123 |
|---|---|---|---|---|---|---|---|
| 2 | 2 | 1234.1234 | 123456789123.123456 | 12345678912345678912345678.123456789876 | 123456789 | 123456789123456789.12345678 | 987654321 |
| 3 | 3 | 1234 | 123456789123 | 12345678912345678912345678 | 123456789 | 123456789123456789 | 987654321 |
| 4 | 4 | NULL | NULL | 123.123456789876 | 12 | NULL | 123 |
| 5 | 5 | 1.1234 | 12.123456 | NULL | NULL | 1234.123456789 | NULL |