This commit is contained in:
Bojan Serafimov
2022-03-16 22:39:55 -04:00
parent 728f299641
commit 811d46f070
2 changed files with 25 additions and 8 deletions

View File

@@ -15,7 +15,7 @@ def test_get_page(zenith_simple_env: ZenithEnv, zenbenchmark: ZenithBenchmarker)
cur.execute('create table t (i integer);')
cur.execute('insert into t values (0);')
for i in range(10000):
for i in range(100):
cur.execute(f'update t set i = {i};')
cur.execute("select * from t;")