lostluck edited a comment on pull request #15410:
URL: https://github.com/apache/beam/pull/15410#issuecomment-942547141
More or less the same, but we just use the UUID
`aae97d5f-8c88-42b1-a03a-9634f3ed9b29` at the end of the schema payload to
filter it out. Needs an additional if statement, and we can always make it a
slice of "unimplemented contents", that we iterate over to filter out the
tests. The entries in the slice can then be commented with the JIRA in question.
eg. Just outside the function:
```
var filteredCases = []struct{ filter, reason string} {
{ "logical", "BEAM-9615: Support logical types"},
{ "aae97d5f-8c88-42b1-a03a-9634f3ed9b29", "BEAM-NNNNN: Support encoding
position.},
}
```
then instead of the current logically focused check, something like
```
for _, case := range filteredCases {
if strings.Contains(s.Coder.Payload, case.filter) {
log.Printf("skipping coder case. Unsupported in the Go SDK for now:
%v Payload: %v", case.reason, s.Coder.Payload)
return nil
}
}
````
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]