| 5019 | decimal_free(pArg); |
| 5020 | } |
| 5021 | static void decimalSumValue(sqlite3_context *context){ |
| 5022 | Decimal *p = sqlite3_aggregate_context(context, 0); |
| 5023 | if( p==0 ) return; |
| 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; |
nothing calls this directly
no test coverage detected