Details
-
Improvement
-
Status: Resolved
-
Low
-
Resolution: Fixed
Description
minor cqlsh improvement:
the auto completion in cqlsh rocks, so this is just to make a nitpick improvement:
if i type
cqlsh> create KEYSPACE test WITH strategy_class = 'SimpleStrategy' and
then tab tab after it, it will auto complete into:
cqlsh> create KEYSPACE test WITH strategy_class = 'SimpleStrategy' AND strategy_options:replication_factor =
but if i use a fully qualified name:
cqlsh> create KEYSPACE test WITH strategy_class = 'org.apache.cassandra.locator.SimpleStrategy' AND
<strategy_option_name>
it is not smart enough to figured out the available options.
It'd be nice to make the auto completion works for those fully qualified cases.