Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Revert wrong change
  • Loading branch information
wangyum committed Aug 23, 2017
commit b8b03e2e022c9440a4778a7bed2c88d2ac6aaa11
40 changes: 20 additions & 20 deletions docs/sql-programming-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -741,24 +741,24 @@ columns, `gender` and `country` as partitioning columns:
{% highlight text %}

path
????????? to
????????? table
????????? gender=male
??????? ????????? ...
??????? ???
??????? ????????? country=US
??????? ??????? ????????? data.parquet
??????? ????????? country=CN
??????? ??????? ????????? data.parquet
??????? ????????? ...
????????? gender=female
???? ????????? ...
???? ???
???? ????????? country=US
???? ??????? ????????? data.parquet
???? ????????? country=CN
???? ??????? ????????? data.parquet
???? ????????? ...
└── to
└── table
├── gender=male
│   ├── ...
│   │
│   ├── country=US
│   │   └── data.parquet
│   ├── country=CN
│   │   └── data.parquet
│   └── ...
└── gender=female
   ├── ...
   │
   ├── country=US
   │   └── data.parquet
   ├── country=CN
   │   └── data.parquet
   └── ...

{% endhighlight %}

Expand Down Expand Up @@ -1578,7 +1578,7 @@ options.
`Dataset[Row]`, while Java API users must replace `DataFrame` with `Dataset<Row>`. Both the typed
transformations (e.g., `map`, `filter`, and `groupByKey`) and untyped transformations (e.g.,
`select` and `groupBy`) are available on the Dataset class. Since compile-time type-safety in
Python and R is not a language feature, the concept of Dataset does not apply to these languages???
Python and R is not a language feature, the concept of Dataset does not apply to these languages
APIs. Instead, `DataFrame` remains the primary programing abstraction, which is analogous to the
single-node data frame notion in these languages.

Expand Down Expand Up @@ -1835,7 +1835,7 @@ Spark SQL supports the vast majority of Hive features, such as:
* `CLUSTER BY`
* `SORT BY`
* All Hive operators, including:
* Relational operators (`=`, `???`, `==`, `<>`, `<`, `>`, `>=`, `<=`, etc)
* Relational operators (`=`, ``, `==`, `<>`, `<`, `>`, `>=`, `<=`, etc)
* Arithmetic operators (`+`, `-`, `*`, `/`, `%`, etc)
* Logical operators (`AND`, `&&`, `OR`, `||`, etc)
* Complex type constructors
Expand Down