Github user ravipesala commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2024#discussion_r172003787
--- Diff:
examples/spark2/src/main/scala/org/apache/carbondata/examples/CarbonDataFrameExample.scala
---
@@ -54,13 +54,13 @@ object CarbonDataFrameExample {
// Saves dataframe to carbondata file
df.write
.format("carbondata")
- .option("tableName", "carbon_table")
+ .option("tableName", "carbon_df_table")
--- End diff --
I have just changed because of creating fails sometimes because all other
examples use the same name and also better differentiate the table name as per
example.
---