/* * Copyright (C) 2025-present ScyllaDB */ /* * SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0 */ #pragma once #include #include #include namespace vector_search { inline seastar::sstring response_content_to_sstring(const std::vector>& buffers) { seastar::sstring result; for (const auto& buf : buffers) { result.append(buf.get(), buf.size()); } return result; } } // namespace vector_search