◆ Operation()
| static TR duckdb::DecimalSubtractOverflowCheck::Operation |
( |
TA |
left, |
|
|
TB |
right |
|
) |
| |
|
inlinestatic |
54135 {
54136 TR result;
54137 if (!TryDecimalSubtract::Operation<TA, TB, TR>(left, right, result)) {
54138 throw OutOfRangeException("Overflow in subtract of DECIMAL(18) (%d - %d). You might want to add an "
54139 "explicit cast to a bigger decimal.",
54140 left, right);
54141 }
54142 return result;
54143 }
The documentation for this struct was generated from the following file:
- external/duckdb/duckdb.cpp