Skip to content

Commit

Permalink
Updating column names in csv-parquet example
Browse files Browse the repository at this point in the history
  • Loading branch information
ecurtin authored and Emily Curtin committed Mar 7, 2018
1 parent 11ca5f5 commit b7e4e95
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/_examples/csv-vs-parquet.md
Expand Up @@ -58,7 +58,7 @@ spark-bench = {
{
name = "sql"
input = ["hdfs:///tmp/csv-vs-parquet/kmeans-data.csv", "hdfs:///tmp/csv-vs-parquet/kmeans-data.parquet"]
query = ["select * from input", "select `0`, `22` from input where `0` < -0.9"]
query = ["select * from input", "select c0, c22 from input where c0 < -0.9"]
cache = false
}
]
Expand Down
4 changes: 2 additions & 2 deletions examples/csv-vs-parquet.conf
Expand Up @@ -40,11 +40,11 @@ spark-bench = {
{
name = "sql"
input = ["hdfs:///tmp/csv-vs-parquet/kmeans-data.csv", "hdfs:///tmp/csv-vs-parquet/kmeans-data.parquet"]
query = ["select * from input", "select `0`, `22` from input where `0` < -0.9"]
query = ["select * from input", "select c0, c22 from input where c0 < -0.9"]
cache = false
}
]
}
]
}]
}
}

0 comments on commit b7e4e95

Please sign in to comment.