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 2304a6c commit 1009e13Copy full SHA for 1009e13
include/ydb-cpp-sdk/client/value/value.h
@@ -539,3 +539,6 @@ class TValueBuilder : public TValueBuilderBase<TValueBuilder> {
539
};
540
541
} // namespace NYdb
542
+
543
+template<>
544
+void Out<NYdb::TUuidValue>(IOutputStream& o, const NYdb::TUuidValue& value);
src/client/value/value.cpp
@@ -3374,3 +3374,8 @@ TValue TValueBuilder::Build() {
3374
}
3375
3376
3377
3378
3379
+void Out<NYdb::TUuidValue>(IOutputStream& o, const NYdb::TUuidValue& value) {
3380
+ o << value.ToString();
3381
+}
0 commit comments