I want to understand the query execution plan for Phoenix. I am executing below command to get query execution plan.
Command: -
explain select "col1","col2", count(*) as "Count" from "tab_name" group by "col1","col2";
Explain Plan: -
+----------------------------------------------------------------------------------------------------------+
| PLAN |
+----------------------------------------------------------------------------------------------------------+
|CLIENT 85-CHUNK PARALLEL 85-WAY FULL SCAN OVER tab_name |
| SERVER AGGREGATE INTO DISTINCT ROWS BY [d."col1", d."col2"] |
| CLIENT MERGE SORT |
+----------------------------------------------------------------------------------------------------------+
Can any one help me to understand the Phoenix query execution plan.
Thanks in adv.