Fix column name in documentation, thanks to Extortioner01 for the report.

This commit is contained in:
Julien Rouhaud 2020-05-07 13:40:31 +02:00
parent 818441c584
commit d63c0634b8
2 changed files with 2 additions and 1 deletions

View file

@ -13,3 +13,4 @@ People who contributed to hypopg:
* Michael Lroll
* Godwottery
* Jan Koßmann
* Extortioner01

View file

@ -63,7 +63,7 @@ For clarity, let's see how it works with a very simple test case:
.. code-block:: psql
CREATE TABLE hypo (id integer, line text) ;
CREATE TABLE hypo (id integer, val text) ;
INSERT INTO hypo SELECT i, 'line ' || i FROM generate_series(1, 100000) i ;
VACUUM ANALYZE hypo ;