I have created the following user defined types (UDT) in cassandra :
CREATE TYPE keyspace.location (
latitude text,
longitude text,
accuracy text,
address text
);
CREATE TYPE keyspace.person (
name text,
contact_no text,
alternate_contact text
);
and I want to use these to create another UDT
CREATE TYPE keyspace.pinpoint(
user <person>,
location <location>
);