pgr_costResult[]
— A set of records to describe a path result with cost attribute.
CREATE TYPE pgr_costResult AS
(
seq integer,
id1 integer,
id2 integer,
cost float8
);
seq: | sequential ID indicating the path order |
---|---|
id1: | generic name, to be specified by the function, typically the node id |
id2: | generic name, to be specified by the function, typically the edge id |
cost: | cost attribute |
pgr_costResult3[]
— A set of records to describe a path result with cost attribute.
CREATE TYPE pgr_costResult3 AS
(
seq integer,
id1 integer,
id2 integer,
id3 integer,
cost float8
);
seq: | sequential ID indicating the path order |
---|---|
id1: | generic name, to be specified by the function, typically the path id |
id2: | generic name, to be specified by the function, typically the node id |
id3: | generic name, to be specified by the function, typically the edge id |
cost: | cost attribute |
History
path_result