lib/dynamoid/adapter.rb in dynamoid-3.1.0 vs lib/dynamoid/adapter.rb in dynamoid-3.2.0

- old
+ new

@@ -153,9 +153,10 @@ # Delegate all methods that aren't defind here to the underlying adapter. # # @since 0.2.0 def method_missing(method, *args, &block) return benchmark(method, *args) { adapter.send(method, *args, &block) } if adapter.respond_to?(method) + super end # Query the DynamoDB table. This employs DynamoDB's indexes so is generally faster than scanning, but is # only really useful for range queries, since it can only find by one hash key at once. Only provide