[PATCH] Tiny optimization on nbtinsert.c

2020-04-16 Thread Ranier Vilela
Hi, Avoiding some calls and set vars, when it is not necessary. best regards, Ranier Vilela nbtinsert_tiny_optimization.patch Description: Binary data

Re: [PATCH] Tiny optimization.

2019-12-17 Thread Bruce Momjian
On Sat, Nov 23, 2019 at 10:44:47AM +0100, Andreas Karlsson wrote: > On 11/22/19 10:58 PM, Ranier Vilela wrote: > > Remove redutant test. > > Yeah, this test does look redundant since we already check for if parent is > NULL earlier in the function. Any optimizing compiler should see this too, >

Re: [PATCH] Tiny optimization.

2019-11-23 Thread Andreas Karlsson
On 11/22/19 10:58 PM, Ranier Vilela wrote: Remove redutant test. Yeah, this test does look redundant since we already check for if parent is NULL earlier in the function. Any optimizing compiler should see this too, but it is still a good idea to remove it for code clarity. Andreas

[PATCH] Tiny optimization.

2019-11-22 Thread Ranier Vilela
Hi, Remove redutant test. best regards. Ranier Vilela --- \dll\postgresql-12.0\a\backend\executor\execExpr.c Mon Sep 30 17:06:55 2019 +++ execExpr.c Fri Nov 22 18:50:32 2019 @@ -2426,7 +2426,7 @@ { desc = parent->scandesc; - if (parent &&