v.24.6New Feature
Added support for LINESTRING geometry in WKT format with readWKTLineString function
Added support for readingLINESTRINGgeometry in the WKT format using functionreadWKTLineString. #62519 (Nikita Mikhaylov).
Why it matters
This feature enables users to parse and ingestLINESTRING geometries directly from WKT strings, facilitating spatial data analysis and manipulation within ClickHouse.How to use it
Use the functionreadWKTLineString by passing a WKT-formatted LINESTRING string as an argument, for example:SELECT readWKTLineString('LINESTRING(30 10, 10 30, 40 40)')