Re: Partitioning by month causing an error? - Mailing list pgsql-admin

From Tom Lane
Subject Re: Partitioning by month causing an error?
Date
Msg-id 27088.1576904173@sss.pgh.pa.us
Whole thread Raw
In response to Re: Partitioning by month causing an error?  (Ron <ronljohnsonjr@gmail.com>)
Responses Re: Partitioning by month causing an error?  (Ron <ronljohnsonjr@gmail.com>)
List pgsql-admin
Ron <ronljohnsonjr@gmail.com> writes:
> On 12/20/19 10:10 PM, Tom Lane wrote:
>> This rule breaks fewer things than a rule of A <= X <= B would.

> Why not?  For 20+ years (not on Postgres) I've been specifying partition 
> limits where the upper limits are the edge of timestamps (octaword integers 
> counting the number of 100ns ticks since November 17, 1858), and have 
> *never* had a problem:
> IN ETC_TRAN_DETAIL_201909_UA WITH LIMIT OF '2019-09-30 23:59:59.99',
> IN ETC_TRAN_DETAIL_201910_UA WITH LIMIT OF '2019-10-31 23:59:59.99',

And what happens with '2019-10-31 23:59:59.9999'?  I don't know about
your other database, but in Postgres that value is legal and it's larger
than '2019-10-31 23:59:59.99', but still less than '2019-11-01 00:00:00'.

The main point here is that even if that works, it requires a whole
lot more assumptions about the behavior of the datatype (specifically,
its precision limit) than the other way.  As soon as you look at cases
where the precision limit isn't clearly defined, it just breaks.

> Of course, I've also never partitioned a table on a float, thinking that's 
> utterly daft.

[ shrug... ]  Works fine as long as you have a non-daft partitioning rule.

            regards, tom lane



pgsql-admin by date:

Previous
From: Ron
Date:
Subject: Re: Partitioning by month causing an error?
Next
From: Ron
Date:
Subject: Re: Partitioning by month causing an error?