We have anomaly related to KnownType. Even though, google.protobuf.EnumValue type is available via descriptors in the base artifact, the type is not known in core-java.
It causes AggregateQueringTest fail in one of the tests which tries to obtain a Java class for the EnumValue type.
A hack solution to this anomaly was to introduce a type which uses EnumValue explicitly. The type is added in the query_service.proto.
The goal of this issue is to find out why the EnumValue type "disappears", fix the root cause of the issue, and remove the TypeAttractor type.
We have anomaly related to
KnownType. Even though,google.protobuf.EnumValuetype is available via descriptors in thebaseartifact, the type is not known incore-java.It causes
AggregateQueringTestfail in one of the tests which tries to obtain a Java class for theEnumValuetype.A hack solution to this anomaly was to introduce a type which uses
EnumValueexplicitly. The type is added in thequery_service.proto.The goal of this issue is to find out why the
EnumValuetype "disappears", fix the root cause of the issue, and remove theTypeAttractortype.