mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-31 12:06:44 +00:00
This patch adds a reproducer to a static-column index lookup bug described in issue #12829: The restriction `where pk=0 and s=1 and c=3` where pk,c are the primary key and s is an indexed static column, results in an internal error: "clustering column id 2 >= 2". Unfortunately, because on_internal_error() crashes Scylla in debug mode, we need to mark this failing test with skip instead of xfail. Refs #12829 Signed-off-by: Nadav Har'El <nyh@scylladb.com> Closes #12852