Skip to content

Commit abe47f3

Browse files
authored
fix bug in the copy constructor of SQLite3Select
1 parent 6088b21 commit abe47f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sqlancer/sqlite3/ast/SQLite3Select.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public SQLite3Select(SQLite3Select other) {
3030
limitClause = other.limitClause;
3131
orderByClause = new ArrayList<>(other.orderByClause);
3232
offsetClause = other.offsetClause;
33-
fetchColumns = new ArrayList<>(fetchColumns);
33+
fetchColumns = new ArrayList<>(other.fetchColumns);
3434
joinStatements = new ArrayList<>();
3535
for (Join j : other.joinStatements) {
3636
joinStatements.add(new Join(j));

0 commit comments

Comments
 (0)