v.25.11New Feature
Geometry Data Type
IntroduceGeometrytype. Support readingWKBandWKTformats for it. In previous versions, theGeometrytype was aliased toString, but now it is a full-featured type. #83344 (scanhex12).
Why it matters
Previously, theGeometry type was merely an alias for String, which limited spatial data handling capabilities. This new implementation provides a full-featured Geometry type that enables more accurate and efficient processing of spatial data by directly supporting standard geometry formats like WKB and WKT.How to use it
Users can define columns with theGeometry type to store spatial data. Data in WKB or WKT formats can be read directly into this type without manual conversion. This enhances compatibility with spatial data sources and allows leveraging ClickHouse's spatial functions and indexing capabilities.