pgsql: Add missing #include.

From: Heikki Linnakangas <heikki(dot)linnakangas(at)iki(dot)fi>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Add missing #include.
Date: 2013-04-24 16:15:27
Message-ID: E1UV2Lv-0006V7-Pj@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Add missing #include.

On non-Windows systems, sys/time.h was pulled in by portability/instr_time.h,
which pulled in time.h. We certainly should include time.h directly, since
we're using time(2), but the indirect include masked the problem on most
platforms.

Andres Freund

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/0c1a160a68b89f5b2c31eac458ca2d62a622a524

Modified Files
--------------
src/bin/psql/command.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Eisentraut 2013-04-25 01:58:27 pgsql: PL/pgSQL doc: Add example for RETURN QUERY
Previous Message Kevin Grittner 2013-04-24 13:46:08 pgsql: Fix assertion failure for REFRESH MATERIALIZED VIEW in PL.