Drop the AGPL license in favor of a source-available license. See the blog post [1] for details. [1] https://www.scylladb.com/2024/12/18/why-were-moving-to-a-source-available-license/
15 lines
549 B
Python
15 lines
549 B
Python
# Copyright 2021-present ScyllaDB
|
|
#
|
|
# SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0
|
|
|
|
#############################################################################
|
|
# 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 ()")
|