Does QuestDB have EXPLAIN

Viewed 88
1 Answers

The QuestDB docs show an explain option for the /exec HTTP endpoint. However, I can't get it to work on my instance running v6.2.

It should work like this:

curl -G \
    --data-urlencode "query=select * from t limit 2;" \
    --data-urlencode "explain=true" \
    http://localhost:9000/exec
Related