Timescaledb: Release candidate instead of stable version is installed when following docs instructions

Created on 15 Oct 2020  路  4Comments  路  Source: timescale/timescaledb

Relevant system information:

  • OS: Ubuntu
  • PostgreSQL version: 12
  • Installation method: apt in docker

Describe the bug
Release candidate is installed instead of the latest stable version

To Reproduce
Follow installation steps of the docs

Expected behavior
Version 1.7.4 is installed

Actual behavior
Version 2.0.0-rc1 is installed

Additional context
The following error message shown by postgres upon adding the extension with psql --dbname <db_name> -c "CREATE EXTENSION IF NOT EXISTS timescaledb CASCADE;"

ERROR:  extension "timescaledb" has no installation script nor update path for version "2.0.0-rc1"
packaging severity-p1

Most helpful comment

Unfortunately the package update for the loader package pulled in some 2.0 stuff that was supposed to stay hidden unless explicitly requested. As a temporary workaround you can install 1.7.4 with the following command:

CREATE EXTENSION IF NOT EXISTS timescaledb VERSION '1.7.4';

All 4 comments

The problem is not just it's an RC version. The new loader package version is simply broken, and it replaced the old one.

what to do?

Unfortunately the package update for the loader package pulled in some 2.0 stuff that was supposed to stay hidden unless explicitly requested. As a temporary workaround you can install 1.7.4 with the following command:

CREATE EXTENSION IF NOT EXISTS timescaledb VERSION '1.7.4';

Packages should be fixed now. Feel free to reopen if the problem persists.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

tkurki picture tkurki  路  3Comments

vfvgc picture vfvgc  路  4Comments

sanpa1977 picture sanpa1977  路  5Comments

jensenbox picture jensenbox  路  4Comments

sezaru picture sezaru  路  5Comments