From d63c0634b88bd1ae2e03e96f7ed878b4cc26653b Mon Sep 17 00:00:00 2001 From: Julien Rouhaud Date: Thu, 7 May 2020 13:40:31 +0200 Subject: [PATCH] Fix column name in documentation, thanks to Extortioner01 for the report. --- CONTRIBUTORS.md | 1 + docs/usage.rst | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 8428aa7..6ef2068 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -13,3 +13,4 @@ People who contributed to hypopg: * Michael Lroll * Godwottery * Jan Koßmann + * Extortioner01 diff --git a/docs/usage.rst b/docs/usage.rst index 5e77c1b..e759300 100644 --- a/docs/usage.rst +++ b/docs/usage.rst @@ -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 ;