Unit Test Results.

Designed for use with JUnit and Ant.

Class dtest-latest_jdk11_python3.8_cythonno_x86_64_22_64

NameTestsErrorsFailuresSkippedTime(s)Time StampHost
8_cythonno_x86_64_22_6417014714.1482024-09-19T00:08:01.600375dadbc6acd4af

Tests

NameStatusTypeTime(s)
test_regular_users_can_alter_their_passwords_onlySuccess40.049
test_disallow_grant_execute_on_non_function_resourcesSuccess31.773
test_cdc_enabled_data_readable_on_round_tripSuccess27.381
test_create_lots_of_schema_churn_with_node_downSkippedawaiting CASSANDRA-10699

/home/cassandra/cassandra-dtest/concurrent_schema_changes_test.py:339: awaiting CASSANDRA-10699
0.000
test_lwt_with_static_columnsSuccess41.567
test_null_valueSuccess26.776
test_decommission_after_drain_is_invalidSuccess46.162
test_row_TTL_expiry_during_pagingSuccess59.064
test_complementary_deletion_with_limit_on_partition_key_column_with_not_empty_partitionsFailureAssertionError: Expected nothing from SELECT * FROM t WHERE k1 = 0 LIMIT 1, but got [[0, 1, 10, 100]]

self = <replica_side_filtering_test.TestSecondaryIndexes object at 0x7f228f035eb0>

def test_complementary_deletion_with_limit_on_partition_key_column_with_not_empty_partitions(self):
self._skip_if_filtering_partition_columns_is_not_supported()
self._prepare_cluster(
create_table="CREATE TABLE t (k1 int, k2 int, c int, s int STATIC, PRIMARY KEY ((k1, k2), c))",
create_index="CREATE INDEX ON t(k1)",
both_nodes=["INSERT INTO t (k1, k2, c, s) VALUES (0, 1, 10, 100)",
"INSERT INTO t (k1, k2, c, s) VALUES (0, 2, 20, 200)"],
only_node1=["DELETE FROM t WHERE k1 = 0 AND k2 = 1"],
only_node2=["DELETE FROM t WHERE k1 = 0 AND k2 = 2"])

> self._assert_none("SELECT * FROM t WHERE k1 = 0 LIMIT 1")

replica_side_filtering_test.py:202:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
replica_side_filtering_test.py:81: in _assert_none
assert_none(self.session, decorated_query)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

session = <cassandra.cluster.Session object at 0x7f228c2d7430>
query = 'SELECT * FROM t WHERE k1 = 0 LIMIT 1', cl = None

def assert_none(session, query, cl=None):
"""
Assert query returns nothing
@param session Session to use
@param query Query to run
@param cl Optional Consistency Level setting. Default ONE

Examples:
assert_none(self.session1, "SELECT * FROM test where key=2;")
assert_none(cursor, "SELECT * FROM test WHERE k=2", cl=ConsistencyLevel.SERIAL)
"""
simple_query = SimpleStatement(query, consistency_level=cl)
res = session.execute(simple_query)
list_res = _rows_to_list(res)
> assert list_res == [], "Expected nothing from {}, but got {}".format(query, list_res)
E AssertionError: Expected nothing from SELECT * FROM t WHERE k1 = 0 LIMIT 1, but got [[0, 1, 10, 100]]

tools/assertions.py:149: AssertionError
78.672
test_creating_and_dropping_tableSuccess26.471
test_archive_commitlog_restore_skip_by_positionSuccess215.184
test_time_uuidSkipped5.1 > 4

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 4
0.262
test_simple_expirationSkipped5.1 > 4

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 4
0.256
test_expiration_overflow_policy_reject_default_ttlSuccess59.444
test_int_valuesSuccess25.150
test_reading_with_ttlSuccess34.515
test_deprecated_repair_error_notificationSkipped5.1 > 4

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 4
0.800
Properties »