We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 025d8cc commit 434a20aCopy full SHA for 434a20a
1 file changed
src/sqlancer/duckdb/DuckDBProvider.java
@@ -103,6 +103,9 @@ public void generateAndTestDatabase(DuckDBGlobalState globalState) throws SQLExc
103
StateLogger logger = globalState.getLogger();
104
QueryManager manager = globalState.getManager();
105
globalState.setSchema(DuckDBSchema.fromConnection(globalState.getConnection(), globalState.getDatabaseName()));
106
+ if (globalState.getOptions().logEachSelect()) {
107
+ globalState.getLogger().writeCurrent(globalState.getState());
108
+ }
109
for (int i = 0; i < Randomly.fromOptions(1, 2); i++) {
110
boolean success = false;
111
do {
0 commit comments