Skip to content

Commit

Permalink
fix: change --test-8.0-version to true
Browse files Browse the repository at this point in the history
  • Loading branch information
zhenglinli committed Aug 27, 2023
1 parent 1dc6030 commit 0312e09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sqlancer/stonedb/StoneDBOptions.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ public class StoneDBOptions implements DBMSSpecificOptions<StoneDBOracleFactory>
public static final String DEFAULT_HOST = "localhost";
public static final int DEFAULT_PORT = 3306;

@Parameter(names = "--test-8.0-version", description = "Let SQLancer test the StoneDB 8.0, otherwise, SQLancer will test the StoneDB 5.7")
public boolean test80Version;
@Parameter(names = "--test-8.0-version", description = "Let SQLancer test the StoneDB 8.0, otherwise, SQLancer will test the StoneDB 5.7", arity = 1)
public boolean test80Version = true;

@Parameter(names = "--oracle")
public List<StoneDBOracleFactory> oracles = List.of(StoneDBOracleFactory.NOREC);
Expand Down

0 comments on commit 0312e09

Please sign in to comment.