Don't cast between GinNullCategory and bool
authorPeter Eisentraut <peter_e@gmx.net>
Tue, 26 Dec 2017 18:47:18 +0000 (13:47 -0500)
committerPeter Eisentraut <peter_e@gmx.net>
Tue, 2 Jan 2018 17:20:56 +0000 (12:20 -0500)
commit438036264a3b71eaf39b2d2eeca67237ed38ca51
treec4fe35152c6ab32a3b661b8676b291a32f22304d
parent93ea78b17c4743c2b63edb5998fb5796ae57e289
Don't cast between GinNullCategory and bool

The original idea was that we could use an isNull-style bool array
directly as a GinNullCategory array.  However, the existing code already
acknowledges that that doesn't really work, because of the possibility
that bool as currently defined can have arbitrary bit patterns for true
values.  So it has to loop through the nullFlags array to set each bool
value to an acceptable value.  But if we are looping through the whole
array anyway, we might as well build a proper GinNullCategory array
instead and abandon the type casting.  That makes the code much safer in
case bool is ever changed to something else.

Reviewed-by: Michael Paquier <michael.paquier@gmail.com>
src/backend/access/gin/ginscan.c
src/backend/access/gin/ginutil.c
src/include/access/ginblock.h