CREATE TABLE conditions (
time TIMESTAMPTZ NOT NULL,
temperature DOUBLE PRECISION NULL,
humidity DOUBLE PRECISION NULL,
log json not null
);
Query 1 ERROR: ERROR: could not find hash function for type json
Creating a distributed hypertable after creating a table results in an error.
If you change the log type to Jsonb and create a distributed hypertable, it will work normally.
Can't Json type be used to create a distributed hypertable?