mirror of https://github.com/apache/cassandra
ninja: ant check after CASSANDRA-17401 landed
This commit is contained in:
parent
d90fe76c8e
commit
4a2bf29a34
|
|
@ -1,8 +1,7 @@
|
||||||
* No need to evict already prepared statements, as it creates a race condition between multiple threads (CASSANDRA-17401)
|
|
||||||
5.0.7
|
5.0.7
|
||||||
|
* No need to evict already prepared statements, as it creates a race condition between multiple threads (CASSANDRA-17401)
|
||||||
* Upgrade logback version to 1.5.18 and slf4j dependencies to 2.0.17 (CASSANDRA-21137)
|
* Upgrade logback version to 1.5.18 and slf4j dependencies to 2.0.17 (CASSANDRA-21137)
|
||||||
* Automatically disable zero-copy streaming for legacy sstables with old bloom filter format (CASSANDRA-21092)
|
* Automatically disable zero-copy streaming for legacy sstables with old bloom filter format (CASSANDRA-21092)
|
||||||
>>>>>>> a06df099f4 (No need to evict already prepared statements, as it creates a race condition between multiple threads)
|
|
||||||
* Fix CQLSSTableWriter serialization of vector of date and time (CASSANDRA-20979)
|
* Fix CQLSSTableWriter serialization of vector of date and time (CASSANDRA-20979)
|
||||||
* Correctly calculate default for FailureDetector max interval (CASSANDRA-21025)
|
* Correctly calculate default for FailureDetector max interval (CASSANDRA-21025)
|
||||||
* Adding missing configs in system_views.settings to be backward compatible (CASSANDRA-20863)
|
* Adding missing configs in system_views.settings to be backward compatible (CASSANDRA-20863)
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,9 @@
|
||||||
*/
|
*/
|
||||||
package org.apache.cassandra.cql3.validation.miscellaneous;
|
package org.apache.cassandra.cql3.validation.miscellaneous;
|
||||||
|
|
||||||
|
import java.util.concurrent.CountDownLatch;
|
||||||
|
import java.util.concurrent.atomic.AtomicBoolean;
|
||||||
|
|
||||||
import org.junit.Assert;
|
import org.junit.Assert;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
|
|
@ -25,9 +28,6 @@ import org.apache.cassandra.cql3.QueryProcessor;
|
||||||
import org.apache.cassandra.service.ClientState;
|
import org.apache.cassandra.service.ClientState;
|
||||||
import org.apache.cassandra.transport.messages.ResultMessage;
|
import org.apache.cassandra.transport.messages.ResultMessage;
|
||||||
|
|
||||||
import java.util.concurrent.CountDownLatch;
|
|
||||||
import java.util.concurrent.atomic.AtomicBoolean;
|
|
||||||
|
|
||||||
public class PreparedStatementTest extends CQLTester
|
public class PreparedStatementTest extends CQLTester
|
||||||
{
|
{
|
||||||
private static final int NUM_THREADS = 50;
|
private static final int NUM_THREADS = 50;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue