Re: Performace comparison of indexes over timestamp fields - Mailing list pgsql-performance

From Tom Lane
Subject Re: Performace comparison of indexes over timestamp fields
Date
Msg-id 12213.1179843088@sss.pgh.pa.us
Whole thread Raw
In response to Performace comparison of indexes over timestamp fields  (Arnau <arnaulist@andromeiberica.com>)
List pgsql-performance
Arnau <arnaulist@andromeiberica.com> writes:
> As you can see the time difference are very big
>    Timestamp:        318.328 ms
>    int8 index:       120.804 ms
>    double precision: 57.065 ms

As already suggested elsewhere, you probably weren't sufficiently
careful in taking your measurements.

A look at the code says that int8 comparison ought to be the fastest
of these.  If timestamps are implemented as floats (which you didn't
say) their comparison speed ought to be *exactly* the same as floats,
because the comparison functions are line-for-line the same.  If
timestamps are implemented as int8 then they should be similar to
int8 comparisons, maybe a tad slower due to an extra level of function
call.  But in any case it seems likely that the actual comparison
function calls would be just a small fraction of the runtime.

            regards, tom lane

pgsql-performance by date:

Previous
From: PFC
Date:
Subject: Re: Tips & Tricks for validating hardware/os
Next
From: Chander Ganesan
Date:
Subject: Domains versus Check Constraints