Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
TBD
==============

Internal
--------
* Remove `align_decimals` preprocessor, which had no effect.


1.48.0 (2026/01/27)
==============

Expand Down
5 changes: 1 addition & 4 deletions mycli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -1409,10 +1409,7 @@ def format_output(

if use_formatter.format_name not in sql_format.supported_formats:
# will run before preprocessors defined as part of the format in cli_helpers
output_kwargs["preprocessors"] = (
preprocessors.convert_to_undecoded_string,
preprocessors.align_decimals,
)
output_kwargs["preprocessors"] = (preprocessors.convert_to_undecoded_string,)

if title: # Only print the title if it's not None.
output = itertools.chain(output, [title])
Expand Down