diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-09-12 17:59:20 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-09-12 17:59:20 -0700 |
commit | ef124013a59d1a9727aa057d48e0e3cbea0d2de9 (patch) | |
tree | ad30f95697c2d6d07e9c47a6b0f8c89b6b9e16b4 /tests/sqlite/benchmark.c | |
parent | 7143eab384be3f42ae75f7595d6f047a68f0f481 (diff) |
fix sqlite porting bug
Diffstat (limited to 'tests/sqlite/benchmark.c')
-rw-r--r-- | tests/sqlite/benchmark.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sqlite/benchmark.c b/tests/sqlite/benchmark.c index 5618d388..f33c7c2f 100644 --- a/tests/sqlite/benchmark.c +++ b/tests/sqlite/benchmark.c @@ -81,7 +81,7 @@ int main(){ RUN("BEGIN;"); // 25000 INSERTs in a transaction - for (i = 0; i < 5; i++) { + for (i = 0; i < 78; i++) { RUN("INSERT INTO t1 VALUES(1,12345,'one 1 one 1 one 1');"); RUN("INSERT INTO t1 VALUES(2,23422,'two two two two');"); RUN("INSERT INTO t1 VALUES(3,31233,'three three 33333333333 three');"); |