You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "jiaan.geng (Jira)" <ji...@apache.org> on 2022/07/28 09:39:00 UTC

[jira] [Created] (SPARK-39909) Organize the check of push down information for JDBCV2Suite

jiaan.geng created SPARK-39909:
----------------------------------

             Summary: Organize the check of push down information for JDBCV2Suite
                 Key: SPARK-39909
                 URL: https://issues.apache.org/jira/browse/SPARK-39909
             Project: Spark
          Issue Type: Sub-task
          Components: SQL
    Affects Versions: 3.4.0
            Reporter: jiaan.geng


Currently, JDBCV2Suite have many test cases check the push-down information looks not clean.
For example,

{code:java}
checkPushedInfo(df,
     "PushedFilters: [DEPT IS NOT NULL, DEPT > 1], PushedLimit: LIMIT 1, ")
{code}

If we change it to below looks better.

{code:java}
checkPushedInfo(df,
      "PushedFilters: [DEPT IS NOT NULL, DEPT > 1]",
      "PushedLimit: LIMIT 1")
{code}




--
This message was sent by Atlassian Jira
(v8.20.10#820010)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org