Name | Status | Type | Time(s) |
test_timestamp_and_ttl | Skipped | test not applicable to env.
/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:1036: test not applicable to env. | 0.001 |
test_nonpure_function_collection | Skipped | test not applicable to env.
/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:3292: test not applicable to env. | 0.000 |
test_limit_ranges | Success | | 58.608 |
test_timeuuid | Success | | 65.058 |
test_SIM_assertion_error | Success | | 58.731 |
test_remove_range_slice | Success | | 59.943 |
test_tuple_notation | Success | | 56.969 |
test_range_tombstones_compaction | Success | | 91.582 |
test_select_distinct_with_deletions | Success | | 60.092 |
test_counters | Success | | 148.080 |
test_clustering_indexing | Success | | 60.918 |
test_select_map_key_single_row | Skipped | awaiting CASSANDRA-7396
/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:5231: awaiting CASSANDRA-7396 | 0.000 |
test_reversed_compact_multikey | Success | | 122.895 |
test_cas_and_compact | Success | | 59.910 |
test_map | Skipped | test not applicable to env.
/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:1339: test not applicable to env. | 0.000 |
test_store_sets_with_if_not_exists | Skipped | test not applicable to env.
/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:3501: test not applicable to env. | 0.000 |
test_in_clause_wide_rows | Success | | 50.662 |
test_conversion_functions | Success | | 49.940 |
test_select_set_key_multi_row | Skipped | awaiting CASSANDRA-7396
/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:5347: awaiting CASSANDRA-7396 | 0.000 |
test_multiordering | Success | | 52.897 |
test_whole_set_conditional | Success | | 56.248 |
test_composite_row_key | Failure | TypeError: '<' not supported between instances of 'str' and 'int'
self = <abc.TestCQLNodes2RF1_Upgrade_current_5_0_x_To_indev_5_0_x object at 0x7f0eb5d16a00>
def test_composite_row_key(self):
cursor = self.prepare()
cursor.execute("""
CREATE TABLE test (
k1 int,
k2 int,
c int,
v int,
PRIMARY KEY ((k1, k2), c)
)
""")
for is_upgraded, cursor in self.do_upgrade(cursor):
logger.debug("Querying {} node".format("upgraded" if is_upgraded else "old"))
cursor.execute("TRUNCATE test")
req = "INSERT INTO test (k1, k2, c, v) VALUES ({}, {}, {}, {})"
for i in range(0, 4):
cursor.execute(req.format(0, i, i, i))
assert_all(cursor, "SELECT * FROM test", [[0, 2, 2, 2], [0, 3, 3, 3], [0, 0, 0, 0], [0, 1, 1, 1]])
assert_all(cursor, "SELECT * FROM test WHERE k1 = 0 and k2 IN (1, 3)", [[0, 1, 1, 1], [0, 3, 3, 3]])
assert_invalid(cursor, "SELECT * FROM test WHERE k2 = 3")
> if self.get_node_version(is_upgraded) < '2.2':
upgrade_tests/cql_tests.py:1496:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
upgrade_tests/upgrade_base.py:227: in get_node_version
return max(node_versions) if is_upgraded else min(node_versions)
/usr/lib/python3.8/distutils/version.py:64: in __gt__
c = self._cmp(other)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = LooseVersion ('5.0-rc1'), other = LooseVersion ('5.0.1')
def _cmp (self, other):
if isinstance(other, str):
other = LooseVersion(other)
if self.version == other.version:
return 0
> if self.version < other.version:
E TypeError: '<' not supported between instances of 'str' and 'int'
/usr/lib/python3.8/distutils/version.py:337: TypeError | 49.624 |
test_more_user_types | Success | | 57.472 |
test_order_by_with_in | Success | | 52.393 |
test_empty_blob | Success | | 51.434 |
test_tracing_prevents_startup_after_upgrading | Success | | 57.646 |
test_truncate_clean_cache | Skipped | https://issues.apache.org/jira/browse/CASSANDRA-14961
/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:2379: https://issues.apache.org/jira/browse/CASSANDRA-14961 | 0.000 |
test_cas_and_list_index | Success | | 55.632 |
test_only_pk | Skipped | test not applicable to env.
/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:1668: test not applicable to env. | 0.000 |
test_map_keys_indexing | Skipped | test not applicable to env.
/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:3785: test not applicable to env. | 0.000 |
test_with_equal_results_to_page_size | Success | | 61.629 |
test_with_order_by_reversed | Success | | 63.465 |
test_static_columns_paging | Success | | 73.248 |
test_data_change_impacting_later_page | Success | | 62.082 |
test_single_cell_deletions | Success | | 79.950 |
test_multiple_cell_deletions | Skipped | test not applicable to env.
/home/cassandra/cassandra-dtest/upgrade_tests/paging_test.py:1426: test not applicable to env. | 0.000 |
test_sstableloader_compression_none_to_snappy | Skipped | 5.0.1 > 3.99
/home/cassandra/cassandra-dtest/conftest.py:468: 5.0.1 > 3.99 | 0.785 |
test_sstableloader_compression_snappy_to_deflate | Skipped | 5.0.1 > 4.99
/home/cassandra/cassandra-dtest/conftest.py:468: 5.0.1 > 4.99 | 0.365 |
test_parallel_upgrade | Skipped | Skip base class, only generated classes run the tests
/home/cassandra/cassandra-dtest/upgrade_tests/upgrade_through_versions_test.py:359: Skip base class, only generated classes run the tests | 0.353 |
test_udtfix_in_sstable | Skipped | test not applicable to env.
/home/cassandra/cassandra-dtest/upgrade_tests/upgrade_udtfix_test.py:34: test not applicable to env. | 0.004 |