Re: Why is column name not printed for Keyspace1.Standard1

2010-10-26 Thread deni lugito
unssubscribe

Re: Why is column name not printed for Keyspace1.Standard1

2010-10-26 Thread Joe Alex
That is neat. Will switch to .7 as soon as it is out. On Tue, Oct 26, 2010 at 7:15 PM, Jonathan Ellis wrote: > In 0.7rc1 you can do > > get Keyspace1.Standard1['100'] as utf8 > > if you know that a column defined as bytes has a certain type of data. > > On Tue, Oct 26, 2010 at 4:50 PM, Daniel Lu

Re: Why is column name not printed for Keyspace1.Standard1

2010-10-26 Thread Jonathan Ellis
In 0.7rc1 you can do get Keyspace1.Standard1['100'] as utf8 if you know that a column defined as bytes has a certain type of data. On Tue, Oct 26, 2010 at 4:50 PM, Daniel Lundin wrote: > Since CompareWith is BytesType, the cli will print the names as (hex) bytes. > > Example: "6d6964646c65" =>

Re: Why is column name not printed for Keyspace1.Standard1

2010-10-26 Thread Daniel Lundin
Since CompareWith is BytesType, the cli will print the names as (hex) bytes. Example: "6d6964646c65" => "\x6d\x69\x64\x64\x6c\x65" => "middle" /d On Tue, Oct 26, 2010 at 11:42 PM, Joe Alex wrote: > With the sample Keyspace1 can somebody explain why the column names > does not print in the Stand

Why is column name not printed for Keyspace1.Standard1

2010-10-26 Thread Joe Alex
With the sample Keyspace1 can somebody explain why the column names does not print in the Standard2 case, is it because of UTF8Type? cassandra> set Keyspace1.Standard1['100']['first'] = 'John' Value inserted. cassandra> set Keyspace1.Standard1['100']['last'] = 'Doe' Value inserted