From 176bc28ad548465106d7f849cb67d4eba2842ebd Mon Sep 17 00:00:00 2001 From: slvrtrn Date: Fri, 1 Nov 2024 16:47:36 +0100 Subject: [PATCH] Update CHANGELOG, examples --- CHANGELOG.md | 2 ++ examples/README.md | 1 + 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index cb1f42e..282ddab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +### Added +- [Variant data type](https://clickhouse.com/docs/en/sql-reference/data-types/variant) support. ## [0.13.1] - 2024-10-21 ### Added diff --git a/examples/README.md b/examples/README.md index 35e4270..44edbf4 100644 --- a/examples/README.md +++ b/examples/README.md @@ -18,6 +18,7 @@ If something is missing, or you found a mistake in one of these examples, please - [data_types_derive_simple.rs](data_types_derive_simple.rs) - deriving simpler ClickHouse data types in a struct. Required cargo features: `time`, `uuid`. - [data_types_derive_containers.rs](data_types_derive_containers.rs) - deriving container-like (Array, Tuple, Map, Nested, Geo) ClickHouse data types in a struct. +- [data_types_variant.rs](data_types_variant.rs) - working with the [Variant data type](https://clickhouse.com/docs/en/sql-reference/data-types/variant). ### Special cases