mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-21 15:22:13 +00:00
docs/cql: fix UDT example to use frozen<address>
The 'address' UDT contains a nested collection (map<text, frozen<phone>>),
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 d13a56be2e)
This commit is contained in:
committed by
scylladbbot
parent
f6dacaa18b
commit
209bf75c21
@@ -507,7 +507,7 @@ For example::
|
||||
|
||||
CREATE TABLE superheroes (
|
||||
name frozen<full_name> PRIMARY KEY,
|
||||
home address
|
||||
home frozen<address>
|
||||
);
|
||||
|
||||
.. note::
|
||||
|
||||
Reference in New Issue
Block a user