File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ Bug fixes:
2121----------
2222
2323* Fix the bug with Redshift not displaying word count in status ([related issue](https://github.com/dbcli/pgcli/issues/1320)).
24+ * Show the error status for CSV output format.
25+
2426
25273.4.0 (2022/02/21)
2628==================
Original file line number Diff line number Diff line change @@ -1585,8 +1585,8 @@ def format_status(cur, status):
15851585
15861586 output = itertools .chain (output , formatted )
15871587
1588- # Only print the status if it's not None and we are not producing CSV
1589- if status and table_format != "csv" :
1588+ # Only print the status if it's not None
1589+ if status :
15901590 output = itertools .chain (output , [format_status (cur , status )])
15911591
15921592 return output
You can’t perform that action at this time.
0 commit comments