Skip to content
Open
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
1 change: 1 addition & 0 deletions changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Features:
Bug fixes:
----------
* Add `VERSION` to built-in function completion so `SELECT VERSION();` is suggested.
* Hide timezone notice at startup when local and server timezones are the same.

4.4.0 (2025-12-24)
==================
Expand Down
2 changes: 1 addition & 1 deletion pgcli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -1646,7 +1646,7 @@ def echo_error(msg: str):

if local_tz is None:
echo_error("No local time zone configuration found\n")
else:
elif local_tz != server_tz:
click.secho(
f"Using local time zone {local_tz} (server uses {server_tz})",
fg="green",
Expand Down
Loading