We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be0d69d commit cbdd149Copy full SHA for cbdd149
ydb/public/lib/validation/helpers.cpp
@@ -4,6 +4,7 @@
4
#include <google/protobuf/any.pb.h>
5
#include <google/protobuf/duration.pb.h>
6
#include <google/protobuf/empty.pb.h>
7
+#include <google/protobuf/struct.pb.h>
8
#include <google/protobuf/timestamp.pb.h>
9
#include <google/protobuf/wrappers.pb.h>
10
@@ -52,6 +53,9 @@ bool IsCustomMessage(const google::protobuf::Descriptor* message) {
52
53
if (message->full_name() == google::protobuf::Empty::descriptor()->full_name()) {
54
return false;
55
}
56
+ if (message->full_name() == google::protobuf::Struct::descriptor()->full_name()) {
57
+ return false;
58
+ }
59
if (message->full_name() == google::protobuf::Timestamp::descriptor()->full_name()) {
60
61
0 commit comments