zodb / relstorage

A backend for ZODB that stores pickles in a relational database.
Other
54 stars 46 forks source link

missing row_limit default value for Oracle adapter #361

Closed mamico closed 4 years ago

mamico commented 4 years ago

in https://github.com/zodb/relstorage/blob/master/src/relstorage/adapters/mover.py#L255 there is no a default row_limit value

but for the Oracle's batcher defined here https://github.com/zodb/relstorage/blob/master/src/relstorage/adapters/oracle/adapter.py#L113 there is no a default value

Therefore the error I had

   ...
    batcher = self.make_batcher(cursor) # Default row limit
TypeError: <lambda>() missing 1 required positional argument: 'row_limit'