You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Bjoern Toldbod (JIRA)" <ji...@apache.org> on 2017/08/10 11:12:00 UTC

[jira] [Created] (SPARK-21691) Accessing canonicalized plan for query with limit throws exception

Bjoern Toldbod created SPARK-21691:
--------------------------------------

             Summary: Accessing canonicalized plan for query with limit throws exception
                 Key: SPARK-21691
                 URL: https://issues.apache.org/jira/browse/SPARK-21691
             Project: Spark
          Issue Type: Bug
          Components: SQL
    Affects Versions: 2.2.0
            Reporter: Bjoern Toldbod


Accessing the logical, canonicalized plan fails for queries with limits.
The following demonstrates the issue:

{code:java}
val session = SparkSession.builder.master("local").getOrCreate()

// This works
session.sql("select * from (values 0, 1)").queryExecution.logical.canonicalized

// This fails
session.sql("select * from (values 0, 1) limit 1").queryExecution.logical.canonicalized
{code}

The message in the thrown exception is somewhat confusing (or at least not directly related to the limit):
"Invalid call to toAttribute on unresolved object, tree: *"



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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