Quantcast
Channel: TimescaleDB and PostgreSQL - Timescale Community Forum
Viewing all articles
Browse latest Browse all 293

By_range does not exist

$
0
0

Hello,

I have enabled the timescaledb extension on the Azure Postgres Flexible database. When trying to create a hypertable, I am getting the following error. Below is the table creation, hypertable creation, and error.

create table ryan.speed_tracking
(
    id          bigserial,
    driver_id   text,
    unit_id     text      not null,
    unit_type   text       not null,
    speed       integer          not null,
    speed_limit integer,
    latitude    double precision not null,
    longitude   double precision not null,
    timestamp   timestamp        not null,
    state       text
);


SELECT create_hypertable('ryan.speed_tracking', by_range('timestamp'));
ERROR: function by_range(unknown) does not exist Hint: No function matches the given name and argument types. You might need to add explicit type casts. Position: 44

1 post - 1 participant

Read full topic


Viewing all articles
Browse latest Browse all 293

Trending Articles