indexed writes fail with exception
----------------------------------
Key: CASSANDRA-1402
URL: https://issues.apache.org/jira/browse/CASSANDRA-1402
Project: Cassandra
Issue Type: Bug
Components: Core
Affects Versions: 0.7 beta 1
Reporter: Eric Evans
Attachments:
v1-0001-CASSANDRA-1402-make-test-case-fail-with-ArrayIndexOutO.txt
Indexed writes fail with an ArrayIndexOutOfBoundsException depending on the
length of the key:
{noformat}
java.lang.RuntimeException: java.lang.ArrayIndexOutOfBoundsException: -95
at
org.apache.cassandra.utils.WrappedRunnable.run(WrappedRunnable.java:34)
at
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)
at
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
at java.lang.Thread.run(Thread.java:636)
Caused by: java.lang.ArrayIndexOutOfBoundsException: -95
at org.apache.cassandra.db.Table.apply(Table.java:379)
at org.apache.cassandra.db.RowMutation.apply(RowMutation.java:196)
at
org.apache.cassandra.service.StorageProxy$1.runMayThrow(StorageProxy.java:194)
at
org.apache.cassandra.utils.WrappedRunnable.run(WrappedRunnable.java:30)
... 3 more
{noformat}
The patch that follows updates ColumnFamilyStoreTest to demonstrate.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.