You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just wondering if SdbNavigator interprets NextToken correctly?
I ask because if I run:
select count(*) from `My-Domain`
I get different results each time I run. The domain has about 5m items in, so in a normal SDB select query this would return NextToken as it tots up the result.
The text was updated successfully, but these errors were encountered:
Yes, i think it does ;-) You may open the "Developer Tools > Network" in chrome and see the actual call being made and how the NextToken is processed and passed between requests.
Yes, I think I can see the calls being made correctly. However the end result is incorrect. Given n calls using NextToken, it gives only the final result in the nth call. In this case, around '300000'.
Now, when you use the CLI you have to then sum all the results together, because this is a count(*) call.
Maybe the UI doesn't have the logic to sum all the results? It is logic specific to count(*).
Just wondering if SdbNavigator interprets NextToken correctly?
I ask because if I run:
I get different results each time I run. The domain has about 5m items in, so in a normal SDB select query this would return NextToken as it tots up the result.
The text was updated successfully, but these errors were encountered: