[jira] [Updated] (SPARK-25795) Fix CSV SparkR SQL Example

2018-10-28 Thread Xiao Li (JIRA)


 [ 
https://issues.apache.org/jira/browse/SPARK-25795?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Xiao Li updated SPARK-25795:

Fix Version/s: (was: 2.4.1)
   (was: 3.0.0)
   2.4.0

> Fix CSV SparkR SQL Example
> --
>
> Key: SPARK-25795
> URL: https://issues.apache.org/jira/browse/SPARK-25795
> Project: Spark
>  Issue Type: Bug
>  Components: Examples, R
>Affects Versions: 2.3.0, 2.3.1, 2.3.2, 2.4.0
>Reporter: Dongjoon Hyun
>Assignee: Dongjoon Hyun
>Priority: Minor
> Fix For: 2.3.3, 2.4.0
>
> Attachments: 
> 0001-SPARK-25795-R-EXAMPLE-Fix-CSV-SparkR-SQL-Example.patch
>
>
> This issue aims to fix the following SparkR example in Spark 2.3.0 ~ 2.4.0.
> {code}
> > df <- read.df("examples/src/main/resources/people.csv", "csv")
> > namesAndAges <- select(df, "name", "age")
> ...
> Caused by: org.apache.spark.sql.AnalysisException: cannot resolve '`name`' 
> given input columns: [_c0];;
> 'Project ['name, 'age]
> +- AnalysisBarrier
>   +- Relation[_c0#97] csv
> {code}
>  
> - 
> https://github.com/apache/spark/blob/master/examples/src/main/r/RSparkSQLExample.R
> - 
> https://dist.apache.org/repos/dist/dev/spark/v2.4.0-rc3-docs/_site/sql-programming-guide.html#manually-specifying-options
> - 
> http://spark.apache.org/docs/2.3.2/sql-programming-guide.html#manually-specifying-options
> - 
> http://spark.apache.org/docs/2.3.1/sql-programming-guide.html#manually-specifying-options
> - 
> http://spark.apache.org/docs/2.3.0/sql-programming-guide.html#manually-specifying-options



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Updated] (SPARK-25795) Fix CSV SparkR SQL Example

2018-10-22 Thread Dongjoon Hyun (JIRA)


 [ 
https://issues.apache.org/jira/browse/SPARK-25795?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dongjoon Hyun updated SPARK-25795:
--
Fix Version/s: (was: 2.4.0)
   2.4.1

> Fix CSV SparkR SQL Example
> --
>
> Key: SPARK-25795
> URL: https://issues.apache.org/jira/browse/SPARK-25795
> Project: Spark
>  Issue Type: Bug
>  Components: Examples, R
>Affects Versions: 2.3.0, 2.3.1, 2.3.2, 2.4.0
>Reporter: Dongjoon Hyun
>Assignee: Dongjoon Hyun
>Priority: Minor
> Fix For: 2.3.3, 2.4.1, 3.0.0
>
> Attachments: 
> 0001-SPARK-25795-R-EXAMPLE-Fix-CSV-SparkR-SQL-Example.patch
>
>
> This issue aims to fix the following SparkR example in Spark 2.3.0 ~ 2.4.0.
> {code}
> > df <- read.df("examples/src/main/resources/people.csv", "csv")
> > namesAndAges <- select(df, "name", "age")
> ...
> Caused by: org.apache.spark.sql.AnalysisException: cannot resolve '`name`' 
> given input columns: [_c0];;
> 'Project ['name, 'age]
> +- AnalysisBarrier
>   +- Relation[_c0#97] csv
> {code}
>  
> - 
> https://github.com/apache/spark/blob/master/examples/src/main/r/RSparkSQLExample.R
> - 
> https://dist.apache.org/repos/dist/dev/spark/v2.4.0-rc3-docs/_site/sql-programming-guide.html#manually-specifying-options
> - 
> http://spark.apache.org/docs/2.3.2/sql-programming-guide.html#manually-specifying-options
> - 
> http://spark.apache.org/docs/2.3.1/sql-programming-guide.html#manually-specifying-options
> - 
> http://spark.apache.org/docs/2.3.0/sql-programming-guide.html#manually-specifying-options



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Updated] (SPARK-25795) Fix CSV SparkR SQL Example

2018-10-21 Thread Dongjoon Hyun (JIRA)


 [ 
https://issues.apache.org/jira/browse/SPARK-25795?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dongjoon Hyun updated SPARK-25795:
--
Attachment: 0001-SPARK-25795-R-EXAMPLE-Fix-CSV-SparkR-SQL-Example.patch

> Fix CSV SparkR SQL Example
> --
>
> Key: SPARK-25795
> URL: https://issues.apache.org/jira/browse/SPARK-25795
> Project: Spark
>  Issue Type: Bug
>  Components: Examples, R
>Affects Versions: 2.3.0, 2.3.1, 2.3.2, 2.4.0
>Reporter: Dongjoon Hyun
>Assignee: Dongjoon Hyun
>Priority: Minor
> Attachments: 
> 0001-SPARK-25795-R-EXAMPLE-Fix-CSV-SparkR-SQL-Example.patch
>
>
> This issue aims to fix the following SparkR example in Spark 2.3.0 ~ 2.4.0.
> {code}
> > df <- read.df("examples/src/main/resources/people.csv", "csv")
> > namesAndAges <- select(df, "name", "age")
> ...
> Caused by: org.apache.spark.sql.AnalysisException: cannot resolve '`name`' 
> given input columns: [_c0];;
> 'Project ['name, 'age]
> +- AnalysisBarrier
>   +- Relation[_c0#97] csv
> {code}
>  
> - 
> https://github.com/apache/spark/blob/master/examples/src/main/r/RSparkSQLExample.R
> - 
> https://dist.apache.org/repos/dist/dev/spark/v2.4.0-rc3-docs/_site/sql-programming-guide.html#manually-specifying-options
> - 
> http://spark.apache.org/docs/2.3.2/sql-programming-guide.html#manually-specifying-options
> - 
> http://spark.apache.org/docs/2.3.1/sql-programming-guide.html#manually-specifying-options
> - 
> http://spark.apache.org/docs/2.3.0/sql-programming-guide.html#manually-specifying-options



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Updated] (SPARK-25795) Fix CSV SparkR SQL Example

2018-10-21 Thread Dongjoon Hyun (JIRA)


 [ 
https://issues.apache.org/jira/browse/SPARK-25795?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dongjoon Hyun updated SPARK-25795:
--
Description: 
This issue aims to fix the following SparkR example in Spark 2.3.0 ~ 2.4.0.

{code}
> df <- read.df("examples/src/main/resources/people.csv", "csv")
> namesAndAges <- select(df, "name", "age")
...
Caused by: org.apache.spark.sql.AnalysisException: cannot resolve '`name`' 
given input columns: [_c0];;
'Project ['name, 'age]
+- AnalysisBarrier
  +- Relation[_c0#97] csv
{code}
 
- 
https://github.com/apache/spark/blob/master/examples/src/main/r/RSparkSQLExample.R
- 
https://dist.apache.org/repos/dist/dev/spark/v2.4.0-rc3-docs/_site/sql-programming-guide.html#manually-specifying-options
- 
http://spark.apache.org/docs/2.3.2/sql-programming-guide.html#manually-specifying-options
- 
http://spark.apache.org/docs/2.3.1/sql-programming-guide.html#manually-specifying-options
- 
http://spark.apache.org/docs/2.3.0/sql-programming-guide.html#manually-specifying-options




  was:
This issue aims to fix the following SparkR example in Spark 2.3.0 ~ 2.4.0.

{code}
> df <- read.df("examples/src/main/resources/people.csv", "csv")
> namesAndAges <- select(df, "name", "age")
...
Caused by: org.apache.spark.sql.AnalysisException: cannot resolve '`name`' 
given input columns: [_c0];;
'Project ['name, 'age]
+- AnalysisBarrier
  +- Relation[_c0#97] csv
{code}
 
- 
https://dist.apache.org/repos/dist/dev/spark/v2.4.0-rc3-docs/_site/sql-programming-guide.html#manually-specifying-options
- 
http://spark.apache.org/docs/2.3.2/sql-programming-guide.html#manually-specifying-options
- 
http://spark.apache.org/docs/2.3.1/sql-programming-guide.html#manually-specifying-options
- 
http://spark.apache.org/docs/2.3.0/sql-programming-guide.html#manually-specifying-options





> Fix CSV SparkR SQL Example
> --
>
> Key: SPARK-25795
> URL: https://issues.apache.org/jira/browse/SPARK-25795
> Project: Spark
>  Issue Type: Bug
>  Components: Examples, R
>Affects Versions: 2.3.0, 2.3.1, 2.3.2, 2.4.0
>Reporter: Dongjoon Hyun
>Assignee: Dongjoon Hyun
>Priority: Minor
>
> This issue aims to fix the following SparkR example in Spark 2.3.0 ~ 2.4.0.
> {code}
> > df <- read.df("examples/src/main/resources/people.csv", "csv")
> > namesAndAges <- select(df, "name", "age")
> ...
> Caused by: org.apache.spark.sql.AnalysisException: cannot resolve '`name`' 
> given input columns: [_c0];;
> 'Project ['name, 'age]
> +- AnalysisBarrier
>   +- Relation[_c0#97] csv
> {code}
>  
> - 
> https://github.com/apache/spark/blob/master/examples/src/main/r/RSparkSQLExample.R
> - 
> https://dist.apache.org/repos/dist/dev/spark/v2.4.0-rc3-docs/_site/sql-programming-guide.html#manually-specifying-options
> - 
> http://spark.apache.org/docs/2.3.2/sql-programming-guide.html#manually-specifying-options
> - 
> http://spark.apache.org/docs/2.3.1/sql-programming-guide.html#manually-specifying-options
> - 
> http://spark.apache.org/docs/2.3.0/sql-programming-guide.html#manually-specifying-options



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Updated] (SPARK-25795) Fix CSV SparkR SQL Example

2018-10-21 Thread Dongjoon Hyun (JIRA)


 [ 
https://issues.apache.org/jira/browse/SPARK-25795?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dongjoon Hyun updated SPARK-25795:
--
Summary: Fix CSV SparkR SQL Example  (was: Fix CVS SparkR SQL Example)

> Fix CSV SparkR SQL Example
> --
>
> Key: SPARK-25795
> URL: https://issues.apache.org/jira/browse/SPARK-25795
> Project: Spark
>  Issue Type: Bug
>  Components: Examples, R
>Affects Versions: 2.3.0, 2.3.1, 2.3.2, 2.4.0
>Reporter: Dongjoon Hyun
>Priority: Minor
>
> This issue aims to fix the following SparkR example in Spark 2.3.0 ~ 2.4.0.
> {code}
> > df <- read.df("examples/src/main/resources/people.csv", "csv")
> > namesAndAges <- select(df, "name", "age")
> ...
> Caused by: org.apache.spark.sql.AnalysisException: cannot resolve '`name`' 
> given input columns: [_c0];;
> 'Project ['name, 'age]
> +- AnalysisBarrier
>   +- Relation[_c0#97] csv
> {code}
>  
> - 
> https://dist.apache.org/repos/dist/dev/spark/v2.4.0-rc3-docs/_site/sql-programming-guide.html#manually-specifying-options
> - 
> http://spark.apache.org/docs/2.3.2/sql-programming-guide.html#manually-specifying-options
> - 
> http://spark.apache.org/docs/2.3.1/sql-programming-guide.html#manually-specifying-options
> - 
> http://spark.apache.org/docs/2.3.0/sql-programming-guide.html#manually-specifying-options



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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