Constructs a linestring from WKB.
NEW ST_LineString(wkb[, srid])
wkb
LONG BINARY
A string containing the binary representation of an linestring. The input can be in any supported binary input format, including WKB or EWKB.
srid
INT
The SRID of the result. If not specified, the default is 0.
Constructs a linestring from a binary string representation. The database server determines the input format by inspecting the provided string.
SQL/MM (ISO/IEC 13249-3: 2006) 7.2.2
The following returns LineString (0 0, 5 10)
SELECT NEW ST_LineString(0x0102000000020000000000000000000000000000000000000000000000000014400000000000002440)