Postgresql – Why doesn't postgres reduce a timespan fully when printing?
I've got a table that looks something like this: create table room_server_metrics ( namespace varchar(36) not null, session_id varchar(36) not null, primary key (namespace, session_id), created_at timestamptz not null default now(), updated_at timestamptz not null default now(), ); When I…