Skip to content

Commit 375e8dc

Browse files
Update partitioning.md
1 parent 67caa76 commit 375e8dc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

partitioning.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ INSERT INTO customers VALUES (1,'ACTIVE',100), (2,'RECURRING',20), (3,'EXPIRED',
1818
SELECT tableoid::regclass,* FROM customers;
1919
```
2020
## Partition by Hash
21-
21+
```
2222
CREATE TABLE people (
2323
id int not null,
2424
birth_date date not null,
@@ -43,3 +43,4 @@ INSERT INTO people (id, birth_date, country_code, name) VALUES
4343
SELECT schemaname,relname,n_live_tup
4444
FROM pg_stat_user_tables
4545
ORDER BY n_live_tup DESC;
46+
```

0 commit comments

Comments
 (0)