Name | Status | Type | Time(s) |
test_users_cant_alter_their_superuser_status | Success | | 31.103 |
test_aggregate_function_permissions | Success | | 30.901 |
test_cdc_disabled_data_readable_on_round_trip | Success | | 25.719 |
test_basic | Skipped | awaiting CASSANDRA-10699
/home/cassandra/cassandra-dtest/concurrent_schema_changes_test.py:358: awaiting CASSANDRA-10699 | 0.001 |
test_conditional_updates_on_static_columns_with_null_values | Success | | 42.830 |
test_complex_schema | Success | | 34.481 |
test_correct_dc_rack_in_nodetool_info | Success | | 93.426 |
test_cell_TTL_expiry_during_paging | Success | | 62.380 |
test_complementary_deletion_with_limit_on_clustering_key_column | Failure | AssertionError: Expected nothing from SELECT * FROM t WHERE c = 0 LIMIT 1, but got [[1, 0]]
self = <replica_side_filtering_test.TestSecondaryIndexes object at 0x7fd452f7f250>
def test_complementary_deletion_with_limit_on_clustering_key_column(self):
self._prepare_cluster(
create_table="CREATE TABLE t (k int, c int, PRIMARY KEY (k, c))",
create_index="CREATE INDEX ON t(c)",
both_nodes=["INSERT INTO t (k, c) VALUES (1, 0)",
"INSERT INTO t (k, c) VALUES (2, 0)"],
only_node1=["DELETE FROM t WHERE k = 1"],
only_node2=["DELETE FROM t WHERE k = 2"])
> self._assert_none("SELECT * FROM t WHERE c = 0 LIMIT 1")
replica_side_filtering_test.py:213:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
replica_side_filtering_test.py:81: in _assert_none
assert_none(self.session, decorated_query)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
session = <cassandra.cluster.Session object at 0x7fd4501a68b0>
query = 'SELECT * FROM t WHERE c = 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 c = 0 LIMIT 1, but got [[1, 0]]
tools/assertions.py:149: AssertionError | 80.009 |
test_creating_and_dropping_table_with_2ary_indexes | Success | | 23.232 |
test_archive_and_restore_commitlog_repeatedly | Success | | 104.237 |
test_long_remove | Skipped | 5.1 > 4
/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 4 | 0.544 |
test_expiration_with_default_ttl | Skipped | 5.1 > 4
/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 4 | 0.492 |
test_ttl_is_replicated | Success | | 37.434 |
test_datetime_values | Skipped | 5.1 > 4
/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 4 | 0.514 |
test_reading_with_skip_and_max_rows | Success | | 59.466 |
test_consistent_repair | Success | | 131.018 |