From the documentation I understand that Presto does not use Hive execution environment.
Is this the case for other connectors as well like Mysql? What happens when I do a "select sum(col) from mysql_table" through prestodb?
Does prestodb loads the complete table rows into its memory and performs sum or it offloads the entire computation to mysql execution engine?
Thanks!