You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Mikhail Stepura (JIRA)" <ji...@apache.org> on 2014/04/03 07:20:14 UTC

[jira] [Created] (CASSANDRA-6979) Regression in QueryPagerTest.SliceQueryWithTombstoneTest

Mikhail Stepura created CASSANDRA-6979:
------------------------------------------

             Summary: Regression in QueryPagerTest.SliceQueryWithTombstoneTest
                 Key: CASSANDRA-6979
                 URL: https://issues.apache.org/jira/browse/CASSANDRA-6979
             Project: Cassandra
          Issue Type: Bug
            Reporter: Mikhail Stepura


I've noticed that {{QueryPagerTest.SliceQueryWithTombstoneTest}} fails 
http://cassci.datastax.com/job/cassandra-2.1_test/lastCompletedBuild/testReport/org.apache.cassandra.service/QueryPagerTest/SliceQueryWithTombstoneTest/history/

That started with the build: http://cassci.datastax.com/job/cassandra-2.1/177/

{code}
java.lang.RuntimeException: Error validating INSERT INTO cql_keyspace.table2 (k, c, v) VALUES ('k0', 'c0', null)
	at org.apache.cassandra.cql3.QueryProcessor.processInternal(QueryProcessor.java:212)
	at org.apache.cassandra.service.QueryPagerTest.SliceQueryWithTombstoneTest(QueryPagerTest.java:344)
Caused by: org.apache.cassandra.exceptions.InvalidRequestException: Unknown identifier v
	at org.apache.cassandra.cql3.statements.UpdateStatement$ParsedInsert.prepareInternal(UpdateStatement.java:140)
	at org.apache.cassandra.cql3.statements.ModificationStatement$Parsed.prepare(ModificationStatement.java:713)
	at org.apache.cassandra.cql3.statements.ModificationStatement$Parsed.prepare(ModificationStatement.java:702)
	at org.apache.cassandra.cql3.QueryProcessor.getStatement(QueryProcessor.java:331)
	at org.apache.cassandra.cql3.QueryProcessor.processInternal(QueryProcessor.java:198)
{code}

For some reason Cassandra doesn't recognize the column {{v}}, even though the schema for the table is:
{code:title=Schemaloader.java}
CFMetaData.compile("CREATE TABLE table2 ("
                                                              + "k text,"
                                                              + "c text,"
                                                              + "v text,"
                                                              + "PRIMARY KEY (k, c))", ks_cql)
                                           ));
{code}



--
This message was sent by Atlassian JIRA
(v6.2#6252)