cqlsh ASSUME doesn't work when using SELECT keyspace.cfname syntax
------------------------------------------------------------------
Key: CASSANDRA-3500
URL: https://issues.apache.org/jira/browse/CASSANDRA-3500
Project: Cassandra
Issue Type: Bug
Components: Tools
Affects Versions: 1.0.3
Reporter: paul cannon
Assignee: paul cannon
Priority: Minor
Fix For: 1.0.4
After assigning an ASSUME type to some columnfamily CF in keyspace K, if a
SELECT is subsequently done on CF while the session is using a different
keyspace, the ASSUME does not take effect:
{noformat}
cqlsh> USE ks;
cqlsh:ks> CREATE COLUMNFAMILY cf (key int PRIMARY KEY, col int);
cqlsh:ks> INSERT INTO cf (key, col) VALUES (99, 1633837924);
cqlsh:ks> ASSUME cf(col) VALUES ARE ascii;
cqlsh:ks> SELECT * FROM cf;
KEY | col |
99 | abcd |
cqlsh:ks> USE system;
cqlsh:system> SELECT * FROM ks.cf;
KEY | col |
99 | 1633837924 |
{noformat}
the output from both {{SELECT}}s there should be the same.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira