From d8a4ad6be3e3682ae9c86ab3d6c097c40323ec55 Mon Sep 17 00:00:00 2001 From: Yaniv Michael Kaul Date: Mon, 26 Jan 2026 19:07:45 +0200 Subject: [PATCH] (fix)test_user_function_failure need to be SKIPPED (Scylla does not support UDFs written in Java) See title - added decorator so it'll be skipped. Signed-off-by: Yaniv Kaul --- tests/integration/long/test_failure_types.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/integration/long/test_failure_types.py b/tests/integration/long/test_failure_types.py index 33d2c99130..beb10f02c0 100644 --- a/tests/integration/long/test_failure_types.py +++ b/tests/integration/long/test_failure_types.py @@ -32,6 +32,8 @@ get_node, start_cluster_wait_for_up, requiresmallclockgranularity, local, CASSANDRA_VERSION, TestCluster) +from tests.integration import requires_java_udf + import unittest import pytest @@ -269,6 +271,7 @@ def test_tombstone_overflow_read_failure(self): DROP TABLE test3rf.test2; """, consistency_level=ConsistencyLevel.ALL, expected_exception=None) + @requires_java_udf def test_user_function_failure(self): """ Test to validate that exceptions in user defined function are correctly surfaced by the driver to us.