Files
scylladb/service/storage_proxy_fwd.hh
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

21 lines
548 B
C++

/*
* Copyright (C) 2025-present ScyllaDB
*/
/*
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.1
*/
#pragma once
#include <seastar/util/bool_class.hh>
#include "seastarx.hh"
namespace service {
class storage_proxy;
// Per-request flag that restricts query execution to the local node only
// by filtering out all non-local replicas. Standard consistency level rules apply:
// if the local node alone cannot satisfy the requested CL, an exception is thrown.
using node_local_only = bool_class<class node_local_only_tag>;
}