[jira] [Comment Edited] (SPARK-17103) Can not define class variable in repl

2016-08-17 Thread Jakob Odersky (JIRA)

[ 
https://issues.apache.org/jira/browse/SPARK-17103?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15424228#comment-15424228
 ] 

Jakob Odersky edited comment on SPARK-17103 at 8/17/16 5:28 PM:


That's true, the spark repl is basically just a thin wrapper around the scala 
repl, with custom initialization and settings. One of the settings, 
"-Yrepl-class-based", has caused issues previously and seems to be the culprit 
here again (I can reproduce the issue by running a normal scala repl with said 
setting enabled).

I'll check this out tomorrow, but my first intuition is that it's an upstream 
bug.


was (Author: jodersky):
That's true, the spark repl is basically just a thin wrapper around the scala 
repl, with custom initialization and settings. One of the settings, 
"-Yrepl-class-based", has caused issues previously and seems to be the culprit 
here again (I can reproduce the issue by running a normal scala repl with 
-Yrepl-class-based{/code} enabled).

I'll check this out tomorrow, but my first intuition is that it's an upstream 
bug.

> Can not define class variable in repl
> -
>
> Key: SPARK-17103
> URL: https://issues.apache.org/jira/browse/SPARK-17103
> Project: Spark
>  Issue Type: Bug
>  Components: Spark Shell
>Affects Versions: 2.0.0
>Reporter: Jeff Zhang
>
> I can not execute the following code in spark 2.0 repl, but it succeeds in 
> scala 2.11 repl
> spark 2.0 repl
> {code}
> scala> import java.io.File
> import java.io.File
> scala> class Test {val f=new File(".")}
> :11: error: not found: type File
>class Test {val f=new File(".")}
> {code}
> scala 2.11 repl
> {code}
> scala> import java.io.File
> import java.io.File
> scala> class Test { val f=new File(".")}
> defined class Test
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Comment Edited] (SPARK-17103) Can not define class variable in repl

2016-08-17 Thread Jakob Odersky (JIRA)

[ 
https://issues.apache.org/jira/browse/SPARK-17103?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15424228#comment-15424228
 ] 

Jakob Odersky edited comment on SPARK-17103 at 8/17/16 9:53 AM:


That's true, the spark repl is basically just a thin wrapper around the scala 
repl, with custom initialization and settings. One of the settings, 
"-Yrepl-class-based", has caused issues previously and seems to be the culprit 
here again (I can reproduce the issue by running a normal scala repl with 
-Yrepl-class-based{/code} enabled).

I'll check this out tomorrow, but my first intuition is that it's an upstream 
bug.


was (Author: jodersky):
That's true, the spark repl is basically just a thin wrapper around the scala 
repl, with custom initialization and settings. One of the settings, 
"-Yrepl-class-based", has caused issues previously and seems to be the culprit 
here again (I can reproduce the issue by running a normal scala repl with 
-Yrepl-class-based{/code} enabled).

> Can not define class variable in repl
> -
>
> Key: SPARK-17103
> URL: https://issues.apache.org/jira/browse/SPARK-17103
> Project: Spark
>  Issue Type: Bug
>  Components: Spark Shell
>Affects Versions: 2.0.0
>Reporter: Jeff Zhang
>
> I can not execute the following code in spark 2.0 repl, but it succeeds in 
> scala 2.11 repl
> spark 2.0 repl
> {code}
> scala> import java.io.File
> import java.io.File
> scala> class Test {val f=new File(".")}
> :11: error: not found: type File
>class Test {val f=new File(".")}
> {code}
> scala 2.11 repl
> {code}
> scala> import java.io.File
> import java.io.File
> scala> class Test { val f=new File(".")}
> defined class Test
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Comment Edited] (SPARK-17103) Can not define class variable in repl

2016-08-17 Thread Jakob Odersky (JIRA)

[ 
https://issues.apache.org/jira/browse/SPARK-17103?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15424228#comment-15424228
 ] 

Jakob Odersky edited comment on SPARK-17103 at 8/17/16 9:52 AM:


That's true, the spark repl is basically just a thin wrapper around the scala 
repl, with custom initialization and settings. One of the settings, 
"-Yrepl-class-based", has caused issues previously and seems to be the culprit 
here again (I can reproduce the issue by running a normal scala repl with 
-Yrepl-class-based{/code} enabled).


was (Author: jodersky):
That's true, the spark repl is basically just a thin wrapper around the scala 
repl, with custom initialization and settings. One of the settings, 
"-Yrepl-class-based", has caused issues previously and seems to be the culprit 
here again (I can reproduce the issue by running a normal scala repl with 
-Yrepl-class-based{/code} enabled).

There is one option that is set by spark and has caused previous issues

> Can not define class variable in repl
> -
>
> Key: SPARK-17103
> URL: https://issues.apache.org/jira/browse/SPARK-17103
> Project: Spark
>  Issue Type: Bug
>  Components: Spark Shell
>Affects Versions: 2.0.0
>Reporter: Jeff Zhang
>
> I can not execute the following code in spark 2.0 repl, but it succeeds in 
> scala 2.11 repl
> spark 2.0 repl
> {code}
> scala> import java.io.File
> import java.io.File
> scala> class Test {val f=new File(".")}
> :11: error: not found: type File
>class Test {val f=new File(".")}
> {code}
> scala 2.11 repl
> {code}
> scala> import java.io.File
> import java.io.File
> scala> class Test { val f=new File(".")}
> defined class Test
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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