diff options
Diffstat (limited to 'tools/page_cycler/database/common.js')
-rw-r--r-- | tools/page_cycler/database/common.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/page_cycler/database/common.js b/tools/page_cycler/database/common.js index 75c50e4..6ada567 100644 --- a/tools/page_cycler/database/common.js +++ b/tools/page_cycler/database/common.js @@ -52,7 +52,7 @@ function runPerformanceTest(params) { db.transaction( function(tx) { - tx.executeSql('CREATE TABLE Test (ID INT, Foo TEXT)', [], + tx.executeSql('CREATE TABLE IF NOT EXISTS Test (ID INT, Foo TEXT)', [], function(tx, data) {}, function(tx, error) {}); tx.executeSql('DELETE FROM Test'); if (params.insertRowsAtSetup) { |