We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5931ce2 commit e393ddeCopy full SHA for e393dde
src/iceberg/catalog/rest/json_internal.cc
@@ -92,7 +92,7 @@ Result<T> NamespacePropsFromJson(const nlohmann::json& j) {
92
template <typename T>
93
concept TableResponse = requires(T t) {
94
{ t.metadata_location } -> std::convertible_to<std::optional<std::string>>;
95
- { t.metadata } -> std::same_as<TableMetadata&>; // 非 optional,按你定义
+ { t.metadata } -> std::same_as<TableMetadata&>;
96
{ t.config } -> std::convertible_to<std::optional<MapType>>;
97
};
98
0 commit comments