1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-31 17:02:12 +03:00

doc: Fix typos

From: Thom Brown <thom@linux.com>
This commit is contained in:
Peter Eisentraut
2017-02-17 18:59:29 -05:00
parent 363ac78aee
commit 68f3dbc552
2 changed files with 2 additions and 2 deletions

View File

@@ -1539,7 +1539,7 @@ CREATE TABLE measurement_year_month (
CREATE TABLE cities (
city_id bigserial not null,
name text not null,
population bigint,
population bigint
) PARTITION BY LIST (left(lower(name), 1));
</programlisting></para>