We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5533c4e commit a535520Copy full SHA for a535520
src/sqlancer/sqlite3/gen/ddl/SQLite3ViewGenerator.java
@@ -31,7 +31,7 @@ public static SQLQueryAdapter dropView(SQLite3GlobalState globalState) {
31
public static SQLQueryAdapter generate(SQLite3GlobalState globalState) throws SQLException {
32
StringBuilder sb = new StringBuilder();
33
sb.append("CREATE");
34
- if (Randomly.getBoolean()) {
+ if (globalState.getDbmsSpecificOptions().testTempTables && Randomly.getBoolean()) {
35
sb.append(" ");
36
sb.append(Randomly.fromOptions("TEMP", "TEMPORARY"));
37
}
0 commit comments