This repository was archived by the owner on Oct 29, 2024. It is now read-only.
This repository was archived by the owner on Oct 29, 2024. It is now read-only.
Multiple query request to same series creates a bad ResultSet #192
Closed
Description
When sending multiple queries in the same request it can result in a bad ResultSet when querying from the same series.
For instance if I run these two queries in the same request:
"select \* from foo where time > now() - 20; select \* from foo where time < now() - 40"
I believe it is because the ResultSet uses the series name as the key meaning that both these query results can't be in the ResultSet.