Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tests/integration/long/test_failure_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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.
Expand Down
Loading