Unit Test Results.

Designed for use with JUnit and Ant.

Class dtest-upgrade_jdk11_python3.8_cythonno_x86_64_27_64

NameTestsErrorsFailuresSkippedTime(s)Time StampHost
8_cythonno_x86_64_27_643801112066.9832024-07-20T02:31:38.741909c0b8ed1a7413

Tests

NameStatusTypeTime(s)
test__compatibility_flag_on_3014Success36.137
test_timeuuidSkippedtest not applicable to env.

/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:2630: test not applicable to env.
0.001
test_invalid_string_literalsSkippedhttps://issues.apache.org/jira/browse/CASSANDRA-14960

/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:5198: https://issues.apache.org/jira/browse/CASSANDRA-14960
0.000
test_multiorderingSuccess63.092
test_cas_and_list_indexSuccess58.875
test_range_sliceSuccess67.582
test_in_with_desc_orderSuccess60.822
test_mapSuccess68.353
test_map_keys_indexingSuccess63.123
test_countSuccess156.384
test_cas_simpleSuccess62.804
test_exclusive_sliceSuccess137.302
test_clustering_order_and_functionsSuccess63.736
test_noncomposite_static_cfSkippedtest not applicable to env.

/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:121: test not applicable to env.
0.001
test_clustering_indexingSkippedtest not applicable to env.

/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:2775: test not applicable to env.
0.000
test_select_list_key_single_rowSkippedawaiting CASSANDRA-7396

/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:5290: awaiting CASSANDRA-7396
0.000
test_collection_functionSkipped5.0 > 4.1

/home/cassandra/cassandra-dtest/conftest.py:449: 5.0 > 4.1
0.605
test_key_index_with_reverse_clusteringSuccess56.116
test_refuse_in_with_indexesSuccess58.930
test_list_item_conditionalSuccess58.146
test_composite_row_keyFailureTypeError: '<' not supported between instances of 'str' and 'int'

self = <abc.TestCQLNodes2RF1_Upgrade_current_5_0_x_To_indev_5_0_x object at 0x7fc371d6a940>

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
51.532
test_static_columns_with_2iSuccess58.872
test_no_range_ghostSuccess61.390
test_column_name_validationSuccess57.320
test_order_by_validationSuccess58.524
test_select_with_aliasSuccess59.367
test_limit_multigetSkippedtest not applicable to env.

/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:334: test not applicable to env.
0.000
test_conversion_functionsSkippedtest not applicable to env.

/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:2919: test not applicable to env.
0.000
test_deleted_row_selectSkippedtest not applicable to env.

/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:5405: test not applicable to env.
0.000
test_with_less_results_than_page_sizeSuccess59.674
test_basic_pagingSuccess65.030
test_basic_compound_pagingSuccess62.291
test_query_isolationSuccess128.592
test_failure_threshold_deletionsSuccess68.956
test_upgrade_with_range_tombstone_aeSuccess36.225
test_sstableloader_with_mvSkipped5.0.1 > 4.99

/home/cassandra/cassandra-dtest/conftest.py:468: 5.0.1 > 4.99
0.910
test_dense_supercolumnSkipped5.0 > 3.99

/home/cassandra/cassandra-dtest/conftest.py:449: 5.0 > 3.99
0.937
test_parallel_upgrade_with_internode_sslSuccess283.617
Properties »