[ https://issues.apache.org/jira/browse/CASSANDRA-6583?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Russ Hatch updated CASSANDRA-6583: ---------------------------------- Summary: DROP TYPE complains no keyspace is active (when keyspace is active) (was: ALTER TYPE DROP complains no keyspace is active (when keyspace is active)) > DROP TYPE complains no keyspace is active (when keyspace is active) > ------------------------------------------------------------------- > > Key: CASSANDRA-6583 > URL: https://issues.apache.org/jira/browse/CASSANDRA-6583 > Project: Cassandra > Issue Type: Bug > Environment: trunk-4910ce8 > java version "1.7.0_45" > Reporter: Russ Hatch > Priority: Minor > > ALTER TYPE DROP complains that there is no active keyspace (even when the > session has an active keyspace). The drop works when the prefix is provided. > steps to reproduce: > {noformat} > ccm create test_cluster > ccm populate -n 1 > ccm start > ccm node1 cqlsh > Connected to test_cluster at 127.0.0.1:9160. > [cqlsh 4.1.1 | Cassandra 2.1-SNAPSHOT | CQL spec 3.1.1 | Thrift protocol > 19.39.0] > Use HELP for help. > cqlsh> create keyspace user_type_dropping with replication = > {'class':'SimpleStrategy', 'replication_factor':1} ; > cqlsh> use user_type_dropping ; > cqlsh:user_type_dropping> CREATE TYPE simple_type ( > ... user_number int > ... ); > cqlsh:user_type_dropping> DROP TYPE simple_type; > Bad Request: You have not set a keyspace for this session > cqlsh:user_type_dropping> DROP TYPE user_type_dropping.simple_type; > {noformat} -- This message was sent by Atlassian JIRA (v6.1.5#6160)