Re: Binary encoding of TIMESTAMP WITH TIME ZONE

2020-06-05 Thread Peter J. Holzer
On 2020-06-04 20:32:51 -0400, Tom Lane wrote: > Joe Abbate writes: > > However, when using the same query using the Rust adapter the transition > > to a new row started showing up after midgnight GMT. I opened an issue > > on Github (https://github.com/sfackler/rust-postgres/issues/608 ) and >

Re: Binary encoding of TIMESTAMP WITH TIME ZONE

2020-06-04 Thread Tom Lane
Joe Abbate writes: > However, when using the same query using the Rust adapter the transition > to a new row started showing up after midgnight GMT. I opened an issue > on Github (https://github.com/sfackler/rust-postgres/issues/608 ) and > the maintainer claimed the Rust adapter *had* to init

Binary encoding of TIMESTAMP WITH TIME ZONE

2020-06-04 Thread Joe Abbate
I'm dealing with an issue where a query uses 'today'::date to select one of a number of rows depending on the day modulo the number of rows. The intent is that different information will be shown starting after midnight local time. The query runs as expected in psql and using psycopg2. Howeve