mirror of
https://github.com/isar/rusqlite.git
synced 2025-01-20 00:50:50 +08:00
b189f6ba66
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.