From f0f0ecb58138c36a09c88a5a05f2362e51c67856 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sat, 28 Nov 2020 17:03:12 +1100 Subject: [PATCH] docs: fix simple typo, supress -> suppress There is a small typo in cstore_fdw.c. Should read `suppress` rather than `supress`. --- cstore_fdw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cstore_fdw.c b/cstore_fdw.c index b0a3277..ad068bc 100644 --- a/cstore_fdw.c +++ b/cstore_fdw.c @@ -1926,7 +1926,7 @@ CStoreExplainForeignScan(ForeignScanState *scanState, ExplainState *explainState ExplainPropertyText("CStore File", cstoreFdwOptions->filename, explainState); - /* supress file size if we're not showing cost details */ + /* suppress file size if we're not showing cost details */ if (explainState->costs) { struct stat statBuffer;