From 209bf75c2124dbccbaf1f21d44e2ac01995cc44b Mon Sep 17 00:00:00 2001 From: Yaniv Michael Kaul Date: Wed, 6 May 2026 10:54:41 +0300 Subject: [PATCH] docs/cql: fix UDT example to use frozen
The 'address' UDT contains a nested collection (map>), so it must be frozen when used as a column type. Non-frozen UDTs with nested non-frozen collections are not supported. (cherry picked from commit d13a56be2e9c22fb2bcd6848583d837885b9ea26) --- docs/cql/types.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cql/types.rst b/docs/cql/types.rst index b8b19d0b70..0d616ab491 100644 --- a/docs/cql/types.rst +++ b/docs/cql/types.rst @@ -507,7 +507,7 @@ For example:: CREATE TABLE superheroes ( name frozen PRIMARY KEY, - home address + home frozen
); .. note::