Load any decimal value from a Function into a Decimal256
(Decimal256 decimal, Decimal128 decimal128, Function value, @Nullable Record rec)
| 191 | * Load any decimal value from a Function into a Decimal256 |
| 192 | */ |
| 193 | public static void load(Decimal256 decimal, Decimal128 decimal128, Function value, @Nullable Record rec) { |
| 194 | final int fromType = value.getType(); |
| 195 | load(decimal, decimal128, value, rec, fromType); |
| 196 | } |
| 197 | |
| 198 | /** |
| 199 | * Load any decimal value from a Function into a Decimal256 |