Hi thanks everybody for help,here is the solution
CREATE TYPE login ( emails set<text>, ); CREATE TABLE test ( uid TEXT, loginIds map<text, frozen <login>>, primary key (uid) ); insert into test (uid,loginIds) values ('111',{' virified':{emails:{'f...@baggins.com','bagg...@gmail.com'}}}) ; On Tue, Mar 15, 2016 at 4:38 PM, Rami Badran <ramibadran...@gmail.com> wrote: > Hi > > i have the following cassandra schema structure: > > CREATE TABLE users ( > uid TEXT, > loginIds map<text, frozen <loginId>>, > primary key (uid) > ); > > CREATE TYPE loginId ( > emails set<text>, > unverifiedEmails set<text>, > ); > > and i tried to insert record to my table,but i have problem with loginIds > attribute, > could you please advice how i can insert record > > -- > > Regards > Rami Badran > -- Regards Rami Badran