you can create UDT type:
CREATE TYPE people (
name text,
address
);
and now declare your field like this
people set<frozen <people>>
I hope it's help you
you can create UDT type:
CREATE TYPE people (
name text,
address
);
and now declare your field like this
people set<frozen <people>>
I hope it's help you