Как получить координаты первой точки столбца с типом пути - PullRequest
0 голосов
/ 24 февраля 2020

У меня есть таблица выше

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
...