<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: straight SELECT and SELECT via CTE produce different results in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/straight-SELECT-and-SELECT-via-CTE-produce-different-results/m-p/368773#M240265</link>
    <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/104646"&gt;@JKarount&lt;/a&gt;,&amp;nbsp;Welcome to our community! To help you get the best possible answer, I have tagged in our Impala experts&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/78142"&gt;@Chella&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/12885"&gt;@mszurap&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/75213"&gt;@ChethanYM&lt;/a&gt;&amp;nbsp;who may be able to assist you further.&lt;BR /&gt;&lt;BR /&gt;Please feel free to provide any additional information or details about your query, and we hope that you will find a satisfactory solution to your question.&lt;/P&gt;</description>
    <pubDate>Tue, 18 Apr 2023 08:06:35 GMT</pubDate>
    <dc:creator>VidyaSargur</dc:creator>
    <dc:date>2023-04-18T08:06:35Z</dc:date>
    <item>
      <title>straight SELECT and SELECT via CTE produce different results</title>
      <link>https://community.cloudera.com/t5/Support-Questions/straight-SELECT-and-SELECT-via-CTE-produce-different-results/m-p/368657#M240226</link>
      <description>&lt;P&gt;I ran into an issue last week, which seems to be an issue related to the Cloudera ODBC Driver for Impala.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First I thought it was an issue with pyodbc, but after submitting the issue on their github we figured out that it was a driver issue. For reference: &lt;A href="https://github.com/mkleehammer/pyodbc/issues/1197" target="_blank" rel="noopener"&gt;pyodbc github issue 1197&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Simply put, executing query1 and query2 should produce the same results, but it doesn't:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;query1 = """SELECT
    col1, col2 as col2_orig, 
    (CASE WHEN col2 IS NOT NULL THEN col2
        ELSE 0 END) AS col2_1,
    (CASE WHEN col2 IS NULL THEN 0
        ELSE col2 END) AS col2_2
    FROM  sandbox.jk_test"""

query2 = f"""WITH wrapped_table AS ({query1}) SELECT * FROM wrapped_table"""&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It results in two different sets:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;['col1', 'col2_orig', 'col2_1', 'col2_2']
['1   ', '1        ', '1     ', '1     ']
['2   ', 'None     ', 'None  ', '0     ']

['col1', 'col2_orig', 'col2_1', 'col2_2']
['1   ', '1        ', '1     ', '1     ']
['2   ', 'None     ', '0     ', '0     ']&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The 2nd result is the expected one.&lt;/P&gt;&lt;P&gt;* See the &lt;A href="https://github.com/mkleehammer/pyodbc/issues/1197" target="_blank" rel="noopener"&gt;github issue&lt;/A&gt; for the code used to run these queries.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Running the queries with CData's driver solves the issue, as does connecting using a JDBC connection.&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;My Environment:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Python: Python 3.10.8 (tags/v3.10.8:aaaf517, Oct 11 2022, 16:50:30) [MSC v.1933 64 bit (AMD64)]&lt;/LI&gt;&lt;LI&gt;OS: Windows 10 Enterprise 20H2 64-bit&lt;/LI&gt;&lt;LI&gt;driver: Cloudera ODBC Driver for Impala 2.06.16.1022&lt;/LI&gt;&lt;LI&gt;Windows Script Host Version 5.812 (for vbs script)&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Mon, 17 Apr 2023 08:33:31 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/straight-SELECT-and-SELECT-via-CTE-produce-different-results/m-p/368657#M240226</guid>
      <dc:creator>JKarount</dc:creator>
      <dc:date>2023-04-17T08:33:31Z</dc:date>
    </item>
    <item>
      <title>Re: straight SELECT and SELECT via CTE produce different results</title>
      <link>https://community.cloudera.com/t5/Support-Questions/straight-SELECT-and-SELECT-via-CTE-produce-different-results/m-p/368773#M240265</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/104646"&gt;@JKarount&lt;/a&gt;,&amp;nbsp;Welcome to our community! To help you get the best possible answer, I have tagged in our Impala experts&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/78142"&gt;@Chella&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/12885"&gt;@mszurap&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/75213"&gt;@ChethanYM&lt;/a&gt;&amp;nbsp;who may be able to assist you further.&lt;BR /&gt;&lt;BR /&gt;Please feel free to provide any additional information or details about your query, and we hope that you will find a satisfactory solution to your question.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Apr 2023 08:06:35 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/straight-SELECT-and-SELECT-via-CTE-produce-different-results/m-p/368773#M240265</guid>
      <dc:creator>VidyaSargur</dc:creator>
      <dc:date>2023-04-18T08:06:35Z</dc:date>
    </item>
    <item>
      <title>Re: straight SELECT and SELECT via CTE produce different results</title>
      <link>https://community.cloudera.com/t5/Support-Questions/straight-SELECT-and-SELECT-via-CTE-produce-different-results/m-p/368880#M240298</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/104646"&gt;@JKarount&lt;/a&gt;&amp;nbsp;, thank you for the detailed description and reproduction steps. To be able to help you on this, kindly open a formal support case through our Cloudera Support portal.&lt;/P&gt;&lt;P&gt;Please also reproduce this with the latest ODBC driver version (2.6.17 as of now) with driver TRACE logs enabled. Please see the ODBC driver install guide&lt;/P&gt;&lt;P&gt;&lt;A href="https://downloads.cloudera.com/connectors/ClouderaImpala_ODBC_2.6.17.1026/Cloudera-ODBC-Connector-for-Impala-Install-Guide.pdf" target="_blank"&gt;https://downloads.cloudera.com/connectors/ClouderaImpala_ODBC_2.6.17.1026/Cloudera-ODBC-Connector-for-Impala-Install-Guide.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;(in Windows go to the ODBC datasource configuration, and enable it under Logging Options)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The support team will be able to triage this further with our driver team.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&amp;nbsp;Miklos Szurap&lt;/P&gt;&lt;P&gt;Customer Operations Engineer, Cloudera&lt;/P&gt;</description>
      <pubDate>Wed, 19 Apr 2023 08:06:38 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/straight-SELECT-and-SELECT-via-CTE-produce-different-results/m-p/368880#M240298</guid>
      <dc:creator>mszurap</dc:creator>
      <dc:date>2023-04-19T08:06:38Z</dc:date>
    </item>
    <item>
      <title>Re: straight SELECT and SELECT via CTE produce different results</title>
      <link>https://community.cloudera.com/t5/Support-Questions/straight-SELECT-and-SELECT-via-CTE-produce-different-results/m-p/368905#M240306</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/12885"&gt;@mszurap&lt;/a&gt;&amp;nbsp;Thanks for your reply, I forgot to update the original post, but I have already tried updating to 2.6.17.&lt;/P&gt;&lt;P&gt;I will open a support case, and paste the trace as requested.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Apr 2023 13:24:38 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/straight-SELECT-and-SELECT-via-CTE-produce-different-results/m-p/368905#M240306</guid>
      <dc:creator>JKarount</dc:creator>
      <dc:date>2023-04-19T13:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: straight SELECT and SELECT via CTE produce different results</title>
      <link>https://community.cloudera.com/t5/Support-Questions/straight-SELECT-and-SELECT-via-CTE-produce-different-results/m-p/368911#M240307</link>
      <description>&lt;P&gt;Sorry to post two messages so close to one-another, but I am not allowed to open a case.&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/12885"&gt;@mszurap&lt;/a&gt;,&amp;nbsp;can you tell me what you would advise?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have checked the log myself, and have found that the query is converted in the following way:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;(CASE WHEN col2 IS NOT NULL THEN col2 ELSE 0 END) AS col2_1&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;becomes:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;COALESCE(`jk_test`.`col2`) AS `col2_1`&lt;/LI-CODE&gt;&lt;P&gt;but it should have become:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;COALESCE(`jk_test`.`col2`, 0) AS `col2_1`&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't see any way to attach a file to this thread, but I will paste the important snippets here:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;line 2636:
Apr 19 15:28:46.485 INFO  15044 Simba::ODBC::StatementState::InternalPrepare: Preparing query: SELECT col1, col2 as col2_orig, (CASE WHEN col2 IS NOT NULL THEN col2     ELSE 0 END) AS col2_1, (CASE WHEN col2 IS NULL THEN 0     ELSE col2 END) AS col2_2 FROM  sandbox.jk_test

line 2767:
Apr 19 15:28:47.016 TRACE 15044 Simba::ImpalaODBC::ImpalaSQLGenerator::GenerateAEValueExpr: Generated SQL: COALESCE(`jk_test`.`col2`) AS `col2_1` 

line 2849:
Apr 19 15:28:47.016 TRACE 15044 Simba::ImpalaODBC::ImpalaSQLGenerator::GenerateOneStatement: Generated SQL: SELECT `jk_test`.`col1`, `jk_test`.`col2` AS `col2_orig` , COALESCE(`jk_test`.`col2`) AS `col2_1` , (CASE WHEN (`jk_test`.`col2` IS NULL) THEN 0 ELSE `jk_test`.`col2` END) AS `col2_2`  FROM `sandbox`.`jk_test` `jk_test` 


line 2858-2861:
Apr 19 15:28:47.016 DEBUG 15044 Simba::ImpalaODBC::ImpalaTCLIServiceThreadSafeClient::ExecuteStatement: TExecuteStatementReq
    sessionHandle.sessionId.guid = 
    statement = SELECT `jk_test`.`col1`, `jk_test`.`col2` AS `col2_orig` , COALESCE(`jk_test`.`col2`) AS `col2_1` , (CASE WHEN (`jk_test`.`col2` IS NULL) THEN 0 ELSE `jk_test`.`col2` END) AS `col2_2`  FROM `sandbox`.`jk_test` `jk_test` 
    runAsync = true&lt;/LI-CODE&gt;&lt;P&gt;Of course, I'm guessing other lines might be important for debugging, I am confident that there is an issue in the driver when generating the query, probably to optimize it... Because when using the CTE version, no query is generated whatsoever, and the raw one is executed:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;lines 3587-3590:
Apr 19 15:28:48.365 DEBUG 15044 Simba::ImpalaODBC::ImpalaTCLIServiceThreadSafeClient::ExecuteStatement: TExecuteStatementReq
    sessionHandle.sessionId.guid = 
    statement = WITH wrapped_table AS (SELECT col1, col2 as col2_orig, (CASE WHEN col2 IS NOT NULL THEN col2     ELSE 0 END) AS col2_1, (CASE WHEN col2 IS NULL THEN 0     ELSE col2 END) AS col2_2 FROM  gda_sandbox.jk_test) SELECT * FROM wrapped_table
    runAsync = true&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please let me know if I can do anything else, or if there is any other way for a non-paying user to submit bug-reports.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 19 Apr 2023 13:54:53 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/straight-SELECT-and-SELECT-via-CTE-produce-different-results/m-p/368911#M240307</guid>
      <dc:creator>JKarount</dc:creator>
      <dc:date>2023-04-19T13:54:53Z</dc:date>
    </item>
    <item>
      <title>Re: straight SELECT and SELECT via CTE produce different results</title>
      <link>https://community.cloudera.com/t5/Support-Questions/straight-SELECT-and-SELECT-via-CTE-produce-different-results/m-p/368913#M240309</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/104646"&gt;@JKarount&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I see, we will take up the bug report internally as it may affect other customers too, in any case thanks for your diagnostics and troubleshooting.&lt;/P&gt;&lt;P&gt;In my opinion to achieve the same functionality and most likely it will pass through the ODBC driver as-is, please try to use the Impala's NVL or NVL2 function (or even &lt;SPAN&gt;ZEROIFNULL if it's a numeric column)&lt;/SPAN&gt;:&lt;BR /&gt;&lt;A href="https://impala.apache.org/docs/build/html/topics/impala_conditional_functions.html#conditional_functions__nvl2" target="_blank"&gt;https://impala.apache.org/docs/build/html/topics/impala_conditional_functions.html#conditional_functions__nvl2&lt;/A&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;SELECT col1, col2 as col2_orig, NVL2(col2, col2, 0) as col2_1 FROM sandbox.jk_test&lt;/LI-CODE&gt;&lt;P&gt;or&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;SELECT col1, col2 as col2_orig, NVL(col2, 0) as col2_1 FROM sandbox.jk_test&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;Hope that helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;Miklos&lt;/P&gt;</description>
      <pubDate>Wed, 19 Apr 2023 15:03:31 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/straight-SELECT-and-SELECT-via-CTE-produce-different-results/m-p/368913#M240309</guid>
      <dc:creator>mszurap</dc:creator>
      <dc:date>2023-04-19T15:03:31Z</dc:date>
    </item>
    <item>
      <title>Re: straight SELECT and SELECT via CTE produce different results</title>
      <link>https://community.cloudera.com/t5/Support-Questions/straight-SELECT-and-SELECT-via-CTE-produce-different-results/m-p/368914#M240310</link>
      <description>&lt;P&gt;And another update from my side:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the advanced settings I can select "Use Native Query".&lt;/P&gt;&lt;P&gt;With this option "on", the results are as expected.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For now that will be my workaround, but I expect I am "loosing" on some query optimizations..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'll gladly help if more info is needed!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Apr 2023 15:14:41 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/straight-SELECT-and-SELECT-via-CTE-produce-different-results/m-p/368914#M240310</guid>
      <dc:creator>JKarount</dc:creator>
      <dc:date>2023-04-19T15:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: straight SELECT and SELECT via CTE produce different results</title>
      <link>https://community.cloudera.com/t5/Support-Questions/straight-SELECT-and-SELECT-via-CTE-produce-different-results/m-p/369024#M240344</link>
      <description>&lt;P&gt;I now see I didn't see this reply as I was busy troubleshooting and replying about the advanced option check mark.. Sorry &lt;span class="lia-unicode-emoji" title=":grinning_face_with_sweat:"&gt;😅&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I was not aware that NVL functions were available in Impala, thanks for the proposal. In my case I could also reverse the CASE WHEN condition (to check for IS NULL instead of IS NOT NULL, which also generated the correct result.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Nevertheless, although for me the impact is quite low, I'm not sure this is the case for all possible usages, and that's why I wanted to make the issue known. Thanks for picking it up, and hopefully it get's solved in a coming update!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your assistance,&lt;/P&gt;&lt;P&gt;Jeremy&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2023 14:16:38 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/straight-SELECT-and-SELECT-via-CTE-produce-different-results/m-p/369024#M240344</guid>
      <dc:creator>JKarount</dc:creator>
      <dc:date>2023-04-20T14:16:38Z</dc:date>
    </item>
    <item>
      <title>Re: straight SELECT and SELECT via CTE produce different results</title>
      <link>https://community.cloudera.com/t5/Support-Questions/straight-SELECT-and-SELECT-via-CTE-produce-different-results/m-p/369027#M240347</link>
      <description>&lt;P&gt;Hi Jeremy,&lt;/P&gt;&lt;P&gt;Sure, you're welcome. We also thank you for the report, I've forwarded it to our driver team.&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;Miklos&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2023 14:44:27 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/straight-SELECT-and-SELECT-via-CTE-produce-different-results/m-p/369027#M240347</guid>
      <dc:creator>mszurap</dc:creator>
      <dc:date>2023-04-20T14:44:27Z</dc:date>
    </item>
    <item>
      <title>Re: straight SELECT and SELECT via CTE produce different results</title>
      <link>https://community.cloudera.com/t5/Support-Questions/straight-SELECT-and-SELECT-via-CTE-produce-different-results/m-p/369072#M240367</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/104646"&gt;@JKarount&lt;/a&gt;, If any of the replies from &lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/12885"&gt;@mszurap&lt;/a&gt;&amp;nbsp; has helped you reach a solution, can you please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future?&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Apr 2023 07:49:06 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/straight-SELECT-and-SELECT-via-CTE-produce-different-results/m-p/369072#M240367</guid>
      <dc:creator>VidyaSargur</dc:creator>
      <dc:date>2023-04-21T07:49:06Z</dc:date>
    </item>
    <item>
      <title>Re: straight SELECT and SELECT via CTE produce different results</title>
      <link>https://community.cloudera.com/t5/Support-Questions/straight-SELECT-and-SELECT-via-CTE-produce-different-results/m-p/377501#M243284</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/104646"&gt;@JKarount&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;To close the loop, this has been resolved in the latest Cloudera Impala ODBC driver 2.7.0, see the Resolved Issues section in the Release Notes:&lt;BR /&gt;&lt;A href="https://docs.cloudera.com/documentation/other/connectors/impala-odbc/2-7-0/Release-Notes-Impala-ODBC.pdf" target="_blank"&gt;https://docs.cloudera.com/documentation/other/connectors/impala-odbc/2-7-0/Release-Notes-Impala-ODBC.pdf&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"[IMP-946][02795738] The connector does not generate the last COALESCE&lt;BR /&gt;parameter from the ELSE expression in the CASE statement."&lt;/P&gt;&lt;P&gt;You can download it from:&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.cloudera.com/downloads/connectors/impala/odbc/2-7-0.html" target="_blank"&gt;https://www.cloudera.com/downloads/connectors/impala/odbc/2-7-0.html&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this will help you to implement your usecases as expected.&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;Miklos Szurap&lt;/P&gt;&lt;P&gt;Customer Operations Engineer, Cloudera&lt;/P&gt;</description>
      <pubDate>Wed, 11 Oct 2023 15:42:00 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/straight-SELECT-and-SELECT-via-CTE-produce-different-results/m-p/377501#M243284</guid>
      <dc:creator>mszurap</dc:creator>
      <dc:date>2023-10-11T15:42:00Z</dc:date>
    </item>
  </channel>
</rss>

