Files
scylladb/test/cqlpy/test_range_and_slice.py
Avi Kivity 0ae22a09d4 LICENSE: Update to version 1.1
Updated terms of non-commercial use (must be a never-customer).
2026-04-12 19:46:33 +03:00

15 lines
549 B
Python

# Copyright 2021-present ScyllaDB
#
# SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.1
#############################################################################
# Tests the calculation of partition range and slice.
import pytest
from .util import new_test_table
def test_delete_where_empty_IN(cql, test_keyspace):
"""Tests that DELETE FROM t WHERE p IN () is allowed. See #9311."""
with new_test_table(cql, test_keyspace, "p int, PRIMARY KEY (p)") as table:
cql.execute(f"DELETE FROM {table} WHERE p IN ()")