[GitHub] spark issue #14736: [SPARK-17024][SQL] Weird behaviour of the DataFrame when...

2016-08-21 Thread izeigerman
Github user izeigerman commented on the issue:

https://github.com/apache/spark/pull/14736
  
thanks @HyukjinKwon , for some reason I tested the old code. Both master 
and branch-2.0 don't have this issue. But the issue is still present in 2.0 
release.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] spark issue #14736: [SPARK-17024][SQL] Weird behaviour of the DataFrame when...

2016-08-21 Thread HyukjinKwon
Github user HyukjinKwon commented on the issue:

https://github.com/apache/spark/pull/14736
  
```scala
spark.read
  .format("csv")
  .option("header", "true")
  .option("inferSchema", "true")
  .load("/tmp/test.csv").show()
```

prints the results as below:

```
+--+---+--+---+
|field1|field1.some|field2|field3.some|
+--+---+--+---+
|field1|field1.some|field2|field3.some|
+--+---+--+---+
```

and 

```scala
spark.read
  .format("csv")
  .option("header", "true")
  .option("inferSchema", "true")
  .load("/tmp/test.csv")
  .select("field1", "`field1.some`", "field2", "`field3.some`")
  .show()
```

prints as below:

```
+--+---+--+---+
|field1|field1.some|field2|field3.some|
+--+---+--+---+
|field1|field1.some|field2|field3.some|
+--+---+--+---+
```

Isn't this about https://github.com/apache/spark/pull/14339 ?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] spark issue #14736: [SPARK-17024][SQL] Weird behaviour of the DataFrame when...

2016-08-20 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue:

https://github.com/apache/spark/pull/14736
  
Can one of the admins verify this patch?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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