Re: Delay between consecutive SQL statements when using Alembic on Jenkins

2020-08-17 Thread Mike Bayer
On Sun, Aug 16, 2020, at 11:10 PM, Michał Guzek wrote: > I have a problem with delays between consecutive SQL statements when Alembic > executes a migration script's upgrade() function on Jenkins: > def upgrade(): > op.execute("DELETE FROM employee WHERE name='John';") #John also has its >

Delay between consecutive SQL statements when using Alembic on Jenkins

2020-08-16 Thread Michał Guzek
I have a problem with delays between consecutive SQL statements when Alembic executes a migration script's upgrade() function on Jenkins: def upgrade(): op.execute("DELETE FROM employee WHERE name='John';") #John also has its primary key ID field equal to 1 op.execute("INSERT INTO employee