merge from 1.0

This commit is contained in:
Pavel Yaskevich 2012-01-29 04:33:34 +02:00 committed by Pavel Yaskevich
commit bb5fdbf4b5
2 changed files with 4 additions and 0 deletions

View File

@ -73,6 +73,7 @@
* (cqlsh) format blobs correctly and use colors to improve output
readability (CASSANDRA-3726)
* synchronize BiMap of bootstrapping tokens (CASSANDRA-3417)
* show index options in CLI (CASSANDRA-3809)
1.0.7

View File

@ -2018,6 +2018,9 @@ public class CliClient
if (columnDef.isSetIndex_type())
sessionState.out.println(columnLeftSpace + "Index Type: " + columnDef.getIndex_type().name());
if (columnDef.isSetIndex_options())
sessionState.out.println(columnLeftSpace + "Index Options: " + columnDef.getIndex_options());
}
}