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
559 B
C++
29 lines
559 B
C++
/*
|
|
* Copyright (C) 2017-present ScyllaDB
|
|
*
|
|
* Modified by ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: (LicenseRef-ScyllaDB-Source-Available-1.0 and Apache-2.0)
|
|
*/
|
|
|
|
#include "cql3/role_name.hh"
|
|
|
|
#include <algorithm>
|
|
|
|
namespace cql3 {
|
|
|
|
role_name::role_name(sstring name, preserve_role_case p) : _name(std::move(name)) {
|
|
if (p == preserve_role_case::no) {
|
|
std::transform(_name.begin(), _name.end(), _name.begin(), &::tolower);
|
|
}
|
|
}
|
|
|
|
std::ostream& operator<<(std::ostream& os, const role_name& r) {
|
|
os << r.to_string();
|
|
return os;
|
|
}
|
|
|
|
}
|