У меня есть таблица выше
CREATE TABLE public.geometry
(
id serial not null primary key,
distance float not null,
height float not null,
coordinates path not null,
gtype geometrytype not null
);
при попытке сделать запрос вроде:
SELECT e.id, e.distance, e.height, e.coordinates, e.gtype FROM rf.geometry e WHERE coordinates[0][0] > 10;
Я получил ошибку:
ERROR: cannot subscript type path because it is not an array