** Release memory held by a Decimal, but do not free the object itself. */
| 4548 | ** Release memory held by a Decimal, but do not free the object itself. |
| 4549 | */ |
| 4550 | static void decimal_clear(Decimal *p){ |
| 4551 | sqlite3_free(p->a); |
| 4552 | } |
| 4553 | |
| 4554 | /* |
| 4555 | ** Destroy a Decimal object |
no outgoing calls
no test coverage detected