Skip to content

Commit

Permalink
Ab2D-6039/Troubleshooting prod (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
smirnovaae authored Apr 4, 2024
1 parent fea0adc commit 907d6ae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ void copyDataToFile(Connection connection) {
writer.newLine();
long records = 0;
while (rs.next()) {
var line = getResponseLine(rs.getString(1), rs.getDate(2), rs.getBoolean(3));
var line = getResponseLine(rs.getString("mbi"), rs.getDate("effective_date"), rs.getBoolean("opt_out_flag"));
writer.write(line);
writer.newLine();
records++;
Expand Down

0 comments on commit 907d6ae

Please sign in to comment.