-
-
Notifications
You must be signed in to change notification settings - Fork 178
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add example usage of IterWithTable. #242
Comments
As best i can tell you need to marshal into an intermediate value of a Maybe something like this? var tablePointer string
var attributes map[string]types.AttributeValue
itr := batch.IterWithTable(&tablePointer)
for itr.Next(ctx, &attributes) {
if tablePointer == "Foo" {
//marshal into Table Foo
var val Foo
err := gDynamo.Unmarshal(&types.AttributeValueMemberM{Value: attributes}, &val)
require.NoError(t, err)
} else {
// marshal into Table Bar
var val Bar
err := gDynamo.Unmarshal(&types.AttributeValueMemberM{Value: attributes}, &val)
require.NoError(t, err)
}
}
require.NoError(t, itr.Err()) like i said maybe an example in the godocs would be useful or potentially a testable example but that would probably be a bit more complicated to setup. You do seem to be using dynamo local though so idk if a testable example would be completely off the table. Might just need to setup more tables. |
Your example is the correct usage. I agree the interface kind of sucks, it was tacked on to the single-table version. More docs is always good, especially for confusing ones like this. |
Oh yeah, you can use |
One thing i was playing with was perhaps making a different iterator interface for this function Perhaps somthing with this interface to seperate the "next check" from the record unmarshalling.
Admittedly that is a bit clumsy as well bc clients will need to check the error twice but might be preferable to this tmp variable that is shown above. |
I sent a pr for the godocs based on the current implementation. That should at least help until inspiration strikes for the batch get api. |
Thanks for the PR. With the new iterators coming in Go 1.23 (I think?) it's a good time to consider what the iterator API should become. I will think on it a bit. |
IterWithTable seems to be the only way to marshal different tables into different types of structs. However how it is intended to be used is currently unclear to me. It seems that the pointer passed in will only be set / updated upon calling
iter.Next
however that creates a sort of catch 22.You may not know what kind of object to pass into
Next
which will be used to decode dynamo result, but you need to call Next so you can figure out the table?perhaps i am just missing something, but it seems that some more documentation on this code is likely needed since it's interface is a bit less intuitive.
The text was updated successfully, but these errors were encountered: