File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/backend/access/common Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 99 * Portions Copyright (c) 1994, Regents of the University of California
1010 *
1111 * IDENTIFICATION
12- * $PostgreSQL: pgsql/src/backend/access/common/printtup.c,v 1.88 2005/04/06 16:34:04 tgl Exp $
12+ * $PostgreSQL: pgsql/src/backend/access/common/printtup.c,v 1.89 2005/04/23 17:45:35 tgl Exp $
1313 *
1414 *-------------------------------------------------------------------------
1515 */
@@ -402,7 +402,7 @@ printtup_20(TupleTableSlot *slot, DestReceiver *self)
402402 k = 1 << 7 ;
403403 for (i = 0 ; i < natts ; ++ i )
404404 {
405- if (slot -> tts_isnull [i ])
405+ if (! slot -> tts_isnull [i ])
406406 j |= k ; /* set bit if not null */
407407 k >>= 1 ;
408408 if (k == 0 ) /* end of byte? */
@@ -610,7 +610,7 @@ printtup_internal_20(TupleTableSlot *slot, DestReceiver *self)
610610 k = 1 << 7 ;
611611 for (i = 0 ; i < natts ; ++ i )
612612 {
613- if (slot -> tts_isnull [i ])
613+ if (! slot -> tts_isnull [i ])
614614 j |= k ; /* set bit if not null */
615615 k >>= 1 ;
616616 if (k == 0 ) /* end of byte? */
You can’t perform that action at this time.
0 commit comments