Skip to content

Commit 35105ec

Browse files
committed
Modify DELETE generation probability
1 parent 18ab560 commit 35105ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sqlancer/mariadb/MariaDBProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public void generateDatabase(MariaDBGlobalState globalState) throws Exception {
8080
nrPerformed = globalState.getRandomly().getInteger(0, 2);
8181
break;
8282
case DELETE:
83-
nrPerformed = 10;
83+
nrPerformed = globalState.getRandomly().getInteger(0, 2);
8484
break;
8585
case SET:
8686
nrPerformed = 20;

0 commit comments

Comments
 (0)