pgsql: Avoid use of bool in thread_test.c

From: Peter Eisentraut <peter_e(at)gmx(dot)net>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Avoid use of bool in thread_test.c
Date: 2017-09-14 17:28:02
Message-ID: E1dsXvm-0002O7-7W@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Avoid use of bool in thread_test.c

It's not necessary for such a small program, and it causes unnecessary
extra work to get the correct definition of bool, more so if we are
going to introduce stdbool.h later.

Reviewed-by: Thomas Munro <thomas(dot)munro(at)enterprisedb(dot)com>

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/0c4b879b74f891c19b3b431c5f34f94e50daa09b

Modified Files
--------------
src/test/thread/thread_test.c | 33 ++++++++++-----------------------
1 file changed, 10 insertions(+), 23 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Robert Haas 2017-09-14 19:41:55 pgsql: Expand partitioned table RTEs level by level, without flattening
Previous Message David G. Johnston 2017-09-14 16:59:46 Re: Re: [COMMITTERS] pgsql: Use MINVALUE/MAXVALUE instead of UNBOUNDED for range partition b