Comment 1 for bug 621304

Revision history for this message
David Shrewsbury (dshrews) wrote :

CURRENT_TEST: filesystem_engine.multiple_update
drizzletest: At line 248: query 'UPDATE t1 SET a=555 WHERE a=666' failed: 1030: Got error 24 from storage engine

Davids-iMac:~ david$ perror 24
OS error code 24: Too many open files

Default Mac OS X limit of open files = 256
Default Linux limit of open files = 1024

It seems, from a quick inspection of the test, that for each UPDATE, a new file handle is acquired and never closed. Bug in the engine?