Skip to content

Commit 0b463cf

Browse files
committed
fix
1 parent fd98536 commit 0b463cf

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

docs/sql-ref-syntax-ddl-create-table-datasource.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ as any order. For example, you can write COMMENT table_comment after TBLPROPERTI
6565

6666
**NOTE:** Bucketing is an optimization technique that uses buckets (and bucketing columns) to determine data partitioning and avoid data shuffle.
6767

68-
**SORTED BY**
68+
* **SORTED BY**
6969

7070
Determines the order in which the data is stored in buckets. Default is Ascending order.
7171

docs/sql-ref-syntax-ddl-create-table-hiveformat.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ as any order. For example, you can write COMMENT table_comment after TBLPROPERTI
6767

6868
* **LOCATION**
6969

70-
Path to the directory where table data is stored, Path to the directory where table data is stored, which could be a path on distributed storage like HDFS, etc.
70+
Path to the directory where table data is stored, which could be a path on distributed storage like HDFS, etc.
7171

7272
* **COMMENT**
7373

docs/sql-ref-syntax-ddl-create-table-like.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ CREATE TABLE [IF NOT EXISTS] table_identifier LIKE source_table_identifier
6060

6161
* **LOCATION**
6262

63-
Path to the directory where table data is stored,Path to the directory where table data is stored, which could be a path on distributed storage like HDFS, etc. Location to create an external table.
63+
Path to the directory where table data is stored, which could be a path on distributed storage like HDFS, etc. Location to create an external table.
6464

6565
### Examples
6666

docs/sql-ref-syntax-qry-window.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,15 @@ window_function OVER
5858

5959
`{ RANGE | ROWS } { frame_start | BETWEEN frame_start AND frame_end }`
6060

61-
If frame_end is omitted it defaults to CURRENT ROW.
61+
* `frame_start` and `frame_end` have the following syntax:
6262

63-
`frame_start` and `frame_end` have the following syntax
63+
**Syntax:**
6464

65-
**Syntax:**
65+
`UNBOUNDED PRECEDING | offset PRECEDING | CURRENT ROW | offset FOLLOWING | UNBOUNDED FOLLOWING`
6666

67-
`UNBOUNDED PRECEDING | offset PRECEDING | CURRENT ROW | offset FOLLOWING | UNBOUNDED FOLLOWING`
67+
`offset:` specifies the `offset` from the position of the current row.
6868

69-
`offset:` specifies the <code>offset</code> from the position of the current row.
69+
**Note:** If `frame_end` is omitted it defaults to `CURRENT ROW`.
7070

7171
### Examples
7272

0 commit comments

Comments
 (0)