Skip to content

Commit

Permalink
[misc] benchmark initialization correction
Browse files Browse the repository at this point in the history
  • Loading branch information
rusher committed Feb 4, 2023
1 parent f6861e5 commit 695bc10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmarks/benchs/insert.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function randomString(length) {
return result;
}

let sqlTable = 'CREATE TABLE perfTestText (id MEDIUMINT NOT NULL AUTO_INCREMENT,t0 varchar(100))';
let sqlTable = 'CREATE TABLE perfTestText (id MEDIUMINT NOT NULL AUTO_INCREMENT,t0 varchar(100)';
let sqlParam = '';
let sqlCol = 't0';
for (let i = 1; i < 10; i++) {
Expand Down

0 comments on commit 695bc10

Please sign in to comment.