To reproduce the error, load 50 events into the auth_events table of a default app with Oracle as database.
The problem appears to be caused by the default Oracle cursor arraysize of 50. Adding... self.cursor.arraysize = 200 to the OracleAdapter __init__ method (temporarily) fixes the problem.

