few days ago, I sent a query using presto. it's really simple query like " select * from table limit 3; " but, jdbc error was occured. I check my driver.
At that time, I used PrestoDB driver. Class name was 'com.facebook.presto.jdbc.PrestoDriver' and I changed it to PrestoSQL driver using 'io.prestosql.jdbc.PrestoDriver' class. I solved the query unexecution error. but, I'm curious why it wasn't work at the first time.
Anybody know why ?