I have issue with stream analytics query UNION operation result.
The following query if part one has no rows return, part two has 5 rows return, the UNION suppose to return 5 rows as result, but it return nothing.
SELECT EventKey, Events.ACP.EventType, Event.ACP.Details, NULL Involved
FROM Input1
WHERE Events.ACP IS NOT NULL
UNION
SELECT EventKey, Events.MED.EventType, Event.MED.Details, Event.MED.Involved
FROM Input1
WHERE Events.MED IS NOT NULL
Run each query will have correct number of result, but after union operation return nothing.
Regards