Files
scylladb/cql3/ut_name.hh
Kefu Chai 45c4f2039b cql3: add formatter for cql3::ut_name
before this change, we rely on the default-generated fmt::formatter
created from operator<<, but fmt v10 dropped the default-generated
formatter.

in this change, we define a formatter for cql3::ut_name, and remove
their operator<<().

Refs #13245

Signed-off-by: Kefu Chai <kefu.chai@scylladb.com>

Closes scylladb/scylladb#16890
2024-01-21 16:53:05 +02:00

52 lines
1.1 KiB
C++

/*
* Copyright (C) 2015-present ScyllaDB
*
* Modified by ScyllaDB
*/
/*
* SPDX-License-Identifier: (AGPL-3.0-or-later and Apache-2.0)
*/
#pragma once
#include <seastar/core/shared_ptr.hh>
#include <seastar/core/sstring.hh>
#include <fmt/core.h>
#include "seastarx.hh"
#include "bytes.hh"
#include <optional>
namespace cql3 {
class column_identifier;
class ut_name final {
std::optional<sstring> _ks_name;
::shared_ptr<column_identifier> _ut_name;
public:
ut_name(shared_ptr<column_identifier> ks_name, ::shared_ptr<column_identifier> ut_name);
bool has_keyspace() const;
void set_keyspace(sstring keyspace);
const sstring& get_keyspace() const;
bytes get_user_type_name() const;
sstring get_string_type_name() const;
sstring to_cql_string() const;
};
}
template <> struct fmt::formatter<cql3::ut_name> {
constexpr auto parse(format_parse_context& ctx) { return ctx.begin(); }
auto format(const cql3::ut_name& n, fmt::format_context& ctx) const {
return fmt::format_to(ctx.out(), "{}", n.to_cql_string());
}
};