Skip to content

Commit 26782a5

Browse files
committed
Add GetSchemaExceptions to ConceptManager RPC service
1 parent 78e529d commit 26782a5

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

common/concept.proto

+9
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ message ConceptManager {
3131
PutEntityType.Req put_entity_type_req = 3;
3232
PutAttributeType.Req put_attribute_type_req = 4;
3333
PutRelationType.Req put_relation_type_req = 5;
34+
GetSchemaExceptions.Req get_schema_exceptions_req = 6;
3435
}
3536
}
3637

@@ -41,6 +42,7 @@ message ConceptManager {
4142
PutEntityType.Res put_entity_type_res = 3;
4243
PutAttributeType.Res put_attribute_type_res = 4;
4344
PutRelationType.Res put_relation_type_res = 5;
45+
GetSchemaExceptions.Res get_schema_exceptions_res = 6;
4446
}
4547
}
4648

@@ -93,6 +95,13 @@ message ConceptManager {
9395
Type relation_type = 1;
9496
}
9597
}
98+
99+
message GetSchemaExceptions {
100+
message Req {}
101+
message Res {
102+
repeated string exceptions = 1;
103+
}
104+
}
96105
}
97106

98107
message Concept {

0 commit comments

Comments
 (0)