如何从具有联合主键的 table 使用 TimescaleDB 创建 hypertable?

How do I create a hypertable with TimescaleDB from a table with joint Primary Key?

这个问题几乎说明了一切。我正在尝试从具有联合主键的 table 使用 TimescaleDB 创建一个 hypertable:

CREATE TABLE cars
(
    id BIGINT NOT NULL GENERATED ALWAYS AS IDENTITY,
    time_bought TIMESTAMP NOT NULL,
    brand VARCHAR(100),
);


ALTER TABLE cars ADD CONSTRAINT PK_id_time_bought PRIMARY KEY(id, time_bought);


SELECT create_hypertable('cars', 'time_bought');

当我尝试通过 Intellij 使用 Java 运行 这个时,我得到这个错误:

SQL State  : 42883
Error Code : 0
Message    : ERROR: function create_hypertable(unknown, unknown) does not exist
  Hint: No function matches the given name and argument types. You might need to add explicit type casts.
  Position: 8
Location   : db/migration/tenants/V1__init_schema.sql (C:\example\target\classes\db\migration\tenants\V1__init_schema.sql)
Line       : 45
Statement  : SELECT create_hypertable('cars', 'time_bought')

更新:我已经尝试 运行 迁移,但没有在 table 中放置任何主键,它仍然给出相同的错误。问题是 Flyway 根本不支持 TimescaleDB 功能吗?如果是这样,我该如何解决?

根据 documentation of create_hypertable,对它的调用在我看来是正确的。因此很可能可以找到 none 个 TimescaleDB 函数。常见的原因是:

  1. 未在数据库中创建 TimescaleDB 扩展。
  2. TimescaleDB 函数在与当前模式不同的模式中。

TimescaleDB 扩展是为每个数据库创建的。因此,如果它是在一个数据库中创建的,它将在另一个数据库中不可用。如果已创建扩展,可以使用 \dx 检查。例如

\dx
                 List of installed extensions
  Name   | Version |   Schema   |         Description
---------+---------+------------+------------------------------
 plpgsql | 1.0     | pg_catalog | PL/pgSQL procedural language
(1 row)

create extension timescaledb;

\dx
                                       List of installed extensions
    Name     |  Version  |   Schema   |                            Description
-------------+-----------+------------+-------------------------------------------------------------------
 plpgsql     | 1.0       | pg_catalog | PL/pgSQL procedural language
 timescaledb | 2.3.0-dev | public     | Enables scalable inserts and complex queries for time-series data
(2 rows)

请注意,扩展是在架构 public 中创建的。

因此,如果会话不在同一架构中,例如 public,则将找不到该函数。可以使用 SELECT current_schema; 检查当前模式。如果它不是同一个架构,则应在函数调用中提供架构名称。例如:

SELECT current_schema;
 current_schema
----------------
 test_schema
(1 row)

SELECT create_hypertable('my_table', 'time_column');
ERROR:  function create_hypertable(unknown, unknown) does not exist
LINE 1: SELECT create_hypertable('my_table', 'time_column');
               ^
HINT:  No function matches the given name and argument types. You might need to add explicit type casts.

SELECT public.create_hypertable('my_table', 'time_column');