Re: XLByte* usage - Mailing list pgsql-hackers

From Dimitri Fontaine
Subject Re: XLByte* usage
Date
Msg-id m2vcbztv59.fsf@2ndQuadrant.fr
Whole thread Raw
In response to Re: XLByte* usage  (Andres Freund <andres@2ndquadrant.com>)
Responses Re: XLByte* usage  (Andres Freund <andres@2ndquadrant.com>)
List pgsql-hackers
Andres Freund <andres@2ndquadrant.com> writes:
> In 2) unfortunately one has to make decision in which way to simplify
> negated XLByte(LT|LE) expressions. I tried to make that choice very
> careful and when over every change several times after that, so I hope
> there aren't any bad changes, but more eyeballs are needed.

+    if (lsn > PageGetLSN(page))
+    if (lsn >= PageGetLSN(page))
+    if (lsn <= PageGetLSN(page))
+            if (max_lsn < this_lsn)

My only comment here would be that I would like it much better that the
code always use the same operators, and as we read from left to right,
that we pick < and <=.

Regards,
-- 
Dimitri Fontaine
http://2ndQuadrant.fr     PostgreSQL : Expertise, Formation et Support



pgsql-hackers by date:

Previous
From: Pavel Stehule
Date:
Subject: review: pgbench - aggregation of info written into log
Next
From: Andres Freund
Date:
Subject: Re: XLByte* usage