@@ -31,7 +31,7 @@ public class SQLite3Options {
3131
3232 @ Parameter (names = {
3333 "--test-dbstats" }, description = "Test the DBSTAT Virtual Table (see https://www.sqlite.org/dbstat.html)" , arity = 1 )
34- public boolean testDBStats = false ;
34+ public boolean testDBStats ;
3535
3636 @ Parameter (names = { "--test-generated-columns" }, description = "Test generated columns" , arity = 1 )
3737 public boolean testGeneratedColumns = true ;
@@ -61,14 +61,14 @@ public class SQLite3Options {
6161
6262 @ Parameter (names = {
6363 "--test-soundex" }, description = "Test the soundex function, which can be enabled using a compile-time option." , arity = 1 )
64- public boolean testSoundex = false ;
64+ public boolean testSoundex ;
6565
6666 @ Parameter (names = { "--test-match" }, description = "Allow the generation of the MATCH operator" , arity = 1 )
6767 public boolean testMatch = true ;
6868
6969 @ Parameter (names = {
7070 "--test-distinct-in-view" }, description = "DISTINCT in views might cause occasional false positives in NoREC and TLP" , arity = 1 )
71- public boolean testDistinctInView = false ;
71+ public boolean testDistinctInView ;
7272
7373 @ Parameter (names = "--oracle" , converter = DBMSConverter .class )
7474 public SQLite3Oracle oracle = SQLite3Oracle .NoREC ;
@@ -83,19 +83,19 @@ public class SQLite3Options {
8383
8484 @ Parameter (names = {
8585 "--print-statements" }, description = "Specifies whether to print SQL statements to stdout" , arity = 1 )
86- public boolean printStatements = false ;
86+ public boolean printStatements ;
8787
8888 @ Parameter (names = {
8989 "--execute-queries" }, description = "Specifies whether the query in the fuzzer should be executed" , arity = 1 )
9090 public boolean executeQuery = true ;
9191
9292 @ Parameter (names = {
9393 "--print-successful-statements" }, description = "Specifies whether to print SQL statements to stdout" , arity = 1 )
94- public boolean executeStatementsAndPrintSuccessfulOnes = false ;
94+ public boolean executeStatementsAndPrintSuccessfulOnes ;
9595
9696 @ Parameter (names = {
9797 "--exit-after-first-database" }, description = "Specifies whether to stop SQLancer after creating and executing the test oracle on the first database" , arity = 1 )
98- public boolean exitAfterFirstDatabase = false ;
98+ public boolean exitAfterFirstDatabase ;
9999
100100 public enum SQLite3Oracle {
101101 PQS {
0 commit comments