Created 02-11-2015 10:54 PM
The error sounds like the ODBC connection was successful, but the Impala query failed to parse.
A common issue is sending a SQL string that is terminated by a semicolon. Impala cannot parse such a query. Remove the trailing semicolon to make it work.
Future versions of Impala will also accept a trailing semicolon.
Let me know if this olves ths issue