mirror of https://github.com/apache/cassandra
merge from 1.0
This commit is contained in:
commit
bb5fdbf4b5
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue