[
https://issues.apache.org/jira/browse/SPARK-2452?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Patrick Wendell updated SPARK-2452:
-----------------------------------
Description:
Here is an example:
{code}
scala> val x = 4 ; def f() = x
x: Int = 4
f: ()Int
scala> f()
<console>:11: error: $VAL5 is already defined as value $VAL5
val $VAL5 = INSTANCE;
{code}
was:
Here is an example:
scala> val x = 4 ; def f() = x
x: Int = 4
f: ()Int
scala> f()
<console>:11: error: $VAL5 is already defined as value $VAL5
val $VAL5 = INSTANCE;
> Multi-statement input to spark repl does not work
> -------------------------------------------------
>
> Key: SPARK-2452
> URL: https://issues.apache.org/jira/browse/SPARK-2452
> Project: Spark
> Issue Type: Bug
> Components: Spark Core
> Affects Versions: 1.0.1
> Reporter: Timothy Hunter
> Assignee: Prashant Sharma
> Priority: Blocker
>
> Here is an example:
> {code}
> scala> val x = 4 ; def f() = x
> x: Int = 4
> f: ()Int
> scala> f()
> <console>:11: error: $VAL5 is already defined as value $VAL5
> val $VAL5 = INSTANCE;
> {code}
--
This message was sent by Atlassian JIRA
(v6.2#6252)