8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 00:43:02 +01:00

Fixed an old error which handles aggregates wrongly. So far it seems harmless for versions prior to v3.0 where it has been fixed, but let's be on the safe side.

This commit is contained in:
dimitr 2010-11-08 10:30:43 +00:00
parent 1558c8b079
commit 9f634d15ec

View File

@ -3576,7 +3576,7 @@ static void find_used_streams(const RecordSource* rsb, UCHAR* streams)
break;
}
if (rsb->rsb_next) {
if (!found && rsb->rsb_next) {
find_used_streams(rsb->rsb_next, streams);
}