mirror of
https://github.com/isar/rusqlite.git
synced 2025-02-22 07:48:14 +08:00
Before this commit, if the aggregate function was called on 0 rows, it would always return NULL (and never call Aggregate::init() or finalize()). Now, init() and finalize() are always called to get the result of the function, even if step() is never called.