| 5024 | decimal_result(context, p); |
| 5025 | } |
| 5026 | static void decimalSumFinalize(sqlite3_context *context){ |
| 5027 | Decimal *p = sqlite3_aggregate_context(context, 0); |
| 5028 | if( p==0 ) return; |
| 5029 | decimal_result(context, p); |
| 5030 | decimal_clear(p); |
| 5031 | } |
| 5032 | |
| 5033 | /* |
| 5034 | ** SQL Function: decimal_mul(X, Y) |
nothing calls this directly
no test coverage detected