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

Fixed a problem introduced with my last commit. Assertion with query:

select * from (select * from t1 group by n) group by n;
This commit is contained in:
asfernandes 2009-03-13 15:46:09 +00:00
parent 54c7ff1ace
commit 00a64ad59b

View File

@ -10122,6 +10122,9 @@ static void remap_streams_to_parent_context( dsql_nod* input, dsql_ctx* parent_c
}
break;
case nod_aggregate:
break;
default:
fb_assert(false);
break;