Skip to content

Commit

Permalink
[SQLLINE-26] Flush output for each command when using !record command
Browse files Browse the repository at this point in the history
  • Loading branch information
Sachini authored and julianhyde committed Dec 8, 2014
1 parent 8d95d80 commit 0f8cfdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/sqlline/OutputFile.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class OutputFile {

public OutputFile(String filename) throws IOException {
file = new File(filename);
out = new PrintWriter(new FileWriter(file));
out = new PrintWriter(new FileWriter(file), true);
}

@Override
Expand Down

0 comments on commit 0f8cfdb

Please sign in to comment.