Dnia 2003-12-12 02:17, Użytkownik Aram Kananov napisał:
> select localtimestamp into v;
> raise notice ''Timestamp: %'', v;
Don't use localtimestamp, now() neither any transaction based time
function. They all return the same value among whole transaction. The
only time function, which can be used for performance tests is timeofday().
You can read more about time functions in manual.
Regards,
Tomasz Myrta