Skip to content

Commit

Permalink
[docs] Correcting ddl statements (yugabyte#10032)
Browse files Browse the repository at this point in the history
  • Loading branch information
shubh1608 authored Jul 7, 2022
1 parent f850ec8 commit c3287c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions architecture/design/ysql-row-level-partitioning.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Example: partitioning by date ranges, an example of partitioning by month is sho
1. Create the table with the `PARTITION BY` clause as shown below:
```sql
CREATE TABLE measurement (
city_id int not null PRIMARY KEY,
city_id int not null,
logdate date not null,
peaktemp int,
unitsales int
Expand All @@ -57,7 +57,7 @@ Example: partitioning a table containing information about people by region.
1. Table creation:
```sql
CREATE TABLE person (
person_id int not null PRIMARY KEY,
person_id int not null,
country text
) PARTITION BY LIST (country);
```
Expand Down

0 comments on commit c3287c7

Please sign in to comment.