Re: Request for comment on setting binary format output per session - Mailing list pgsql-hackers

From Jeff Davis
Subject Re: Request for comment on setting binary format output per session
Date
Msg-id ed00e18b605acd3d3e5e582fd6e438f676f4482a.camel@j-davis.com
Whole thread Raw
In response to Re: Request for comment on setting binary format output per session  (Jeff Davis <pgsql@j-davis.com>)
List pgsql-hackers
On Mon, 2023-03-20 at 10:04 -0700, Jeff Davis wrote:
>   CREATE TABLE a(d date, t timestamptz);
>   SET format_binary='25,1082,1184';
>   SELECT * FROM a;
>    d | t
>   ---+---
>    ! |
>   (1 row)

Oops, missing the following statement after the CREATE TABLE:

  INSERT INTO a VALUES('1234-01-01', '2023-03-20 09:00:00');

Regards,
    Jeff Davis




pgsql-hackers by date:

Previous
From: "Gregory Stark (as CFM)"
Date:
Subject: Re: [PATCH] psql: Add tab-complete for optional view parameters
Next
From: "Gregory Stark (as CFM)"
Date:
Subject: Re: doc: add missing "id" attributes to extension packaging page