Hi.
 
I've been facing an issue with the Cloudera Impala ODBC Driver when runing a simple query like:
WITH
    totals AS
    (
       SELECT * FROM dual
    )    
SELECT
    *
FROM totals;
 
The dual table contains 1 record only but it always returns no record when connected through ODBC while the the same Query with JDBC connection returns 1 record.
 
Any idea ?