Dry run Option for N1QL query to find the queries elapsed time

Hi

Is there any Dry run option for N1QL query to estimate the approximate elapsed time before actual execution

Thanks

You can do for Plan generation via EXPLAIN.
The plan is based on rule based and don’t know how many documents qualify and sizes etc. You must execute to get the elapsed time.

In 7.0 Beta you can create stats and EXPLAIN will give the selectivity/cost, not elapsed time.

Thanks for the details