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/
29 lines
553 B
C++
29 lines
553 B
C++
/*
|
|
* Copyright (C) 2019-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include "restrictions/restrictions_config.hh"
|
|
|
|
namespace db { class config; }
|
|
|
|
namespace cql3 {
|
|
|
|
struct cql_config {
|
|
restrictions::restrictions_config restrictions;
|
|
explicit cql_config(const db::config& cfg) : restrictions(cfg) {}
|
|
struct default_tag{};
|
|
cql_config(default_tag) : restrictions(restrictions::restrictions_config::default_tag{}) {}
|
|
};
|
|
|
|
extern const cql_config default_cql_config;
|
|
|
|
}
|