Oliver Elphick <[EMAIL PROTECTED]> writes: > I can see that the current behaviour might give surprising results in a > long running transaction. Surprise could be reduced by giving the time > of first use within the transaction rather than the start of the > transaction.
[ cogitates ... ] Hmm, we could do that, and it probably would break few if any existing apps. But would it really reduce the surprise factor? The complaints we've heard so far all seemed to come from people who expected multiple current_timestamp calls to show advancing times within a transaction. Oliver's idea might be worth doing just on performance grounds: instead of a gettimeofday() call at the start of every transaction, we'd only have to reset a flag variable. When and if current_timestamp is done inside the transaction, then call the kernel to ask what time it is. We win on every transaction that does not contain a current_timestamp call, which is probably a good bet for most apps. But I don't think this does much to resolve the behavioral complaints. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]