From 896974667ff004a2fe0d101dac36e571cae86eb4 Mon Sep 17 00:00:00 2001 From: Alex Ryabov Date: Fri, 1 Mar 2019 19:39:18 +0300 Subject: [PATCH] README.md improved In case if non-default schema is used while creating extension, functions will be created in current schema instead of `public`. But `cstore_clean_table_resources` function is explicitly called from `public` schema, so the user will get an error `ERROR: function cstore_clean_table_resources(oid) does not exist` (similar to https://github.com/citusdata/cstore_fdw/issues/125 bug). We need to make sure that everything is created in `public` schema. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bfdbd54..27115e4 100644 --- a/README.md +++ b/README.md @@ -144,7 +144,7 @@ Then, let's log into Postgres, and run the following commands to create a column store foreign table: ```SQL --- load extension first time after install +-- load extension first time after install (make sure that this command is being executed in schema "public"): CREATE EXTENSION cstore_fdw; -- create server object