You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/sqlancer/MainOptions.java
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -38,6 +38,9 @@ public class MainOptions {
38
38
@Parameter(names="--password", description = "The password used to log into the DBMS")
39
39
privateStringpassword = "sqlancer";
40
40
41
+
@Parameter(names="--print-progress-information", description = "Whether to print progress information such as the number of databases generated or queries issued", arity = 1)
42
+
privatebooleanprintProgressInformation = true;
43
+
41
44
publicintgetMaxExpressionDepth() {
42
45
returnmaxExpressionDepth;
43
46
}
@@ -88,5 +91,9 @@ public DBMS convert(String value) {
0 commit comments