lib/superstore/adapters/abstract_adapter.rb in superstore-2.3.0 vs lib/superstore/adapters/abstract_adapter.rb in superstore-2.4.0
- old
+ new
@@ -2,9 +2,10 @@
module Adapters
class AbstractAdapter
attr_reader :config
def initialize(config)
@config = config
+ @batch_statements = nil
end
# Read records from a instance of Superstore::Scope
def select(scope) # abstract
end