citus
citus copied to clipboard
Document citus_columnar as a separate extension
With #5911, we enabled citus_columnar to be installed/created as a separate extension:
\dx
List of installed extensions
┌────────────────┬─────────┬────────────┬──────────────────────────────┐
│ Name │ Version │ Schema │ Description │
├────────────────┼─────────┼────────────┼──────────────────────────────┤
│ citus_columnar │ 11.3-1 │ pg_catalog │ Citus Columnar extension │
│ plpgsql │ 1.0 │ pg_catalog │ PL/pgSQL procedural language │
└────────────────┴─────────┴────────────┴──────────────────────────────┘
(2 rows)
[local] onderkalaci@onderkalaci:9700-1692=# show shared_preload_libraries ;
┌────────────────────────────────────┐
│ shared_preload_libraries │
├────────────────────────────────────┤
│ citus_columnar, pg_stat_statements │
└────────────────────────────────────┘
(1 row)
This is not documented in Citus readme or citus docs. We should improve it.
@onderkalaci Hi, thanks this issue, I really need a readme for this, So when to update? I hope I can just add the column store extension into my pg's contrib. And use "make install" to use it just like other contribs hopefully.
@onderkalaci hi, is there any progress for the doc?