[Issue 1132] Fix JSONSchema unmarshalling in TableView #1133
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes #1132
Motivation
Fix issue #1132 - using JSONSchema with TableView
Modifications
payload
variable before JSON-unmarshalling into that variable. This allows the JSON package to identify and use the type rather than seeing it asinterface{}
.reflect.Indirect(payload).Interface()
when storing the payload and passing it to listeners to remove the pointer fromreflect.New
.TableView.Get
covering all supported schema types.TableView.ForEachAndListen
for JSONSchema.Additional minor changes. They didn't seem worth their own MRs but I'm happy to split them out if that's better.
TableView.ForEach
andTableView.ForEachAndListen
interface methods.TableView.ForEachAndListen
comment to clarify that it continues to call the given action on future messages.%w
->%v
) in error logtv.logger.Errorf("msg.GetSchemaValue() failed with %v; msg is %v", err, msg)
. (This indirectly callsfmt.Sprintf
in logrus which doesn't support%w
).Verifying this change
This change has some existing test coverage from
TestTableView
.This change has extended test coverage, see
TestTableViewSchemas
andTestForEachAndListenJSONSchema
.Does this pull request potentially affect one of the following parts:
Documentation