Couple of minor fixes - Mailing list pgsql-patches

From Magnus Hagander
Subject Couple of minor fixes
Date
Msg-id 6BCB9D8A16AC4241919521715F4D8BCEA0F8EF@algol.sollentuna.se
Whole thread Raw
Responses Re: Couple of minor fixes  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-patches
Attached match makes a couple of minor changes to get rid of some
annoying compiler warnings:

1) backend/port/win32/sema.c declares a variable inline with the code.
IIRC, that's only allowed in C++. Patch moves declaration to the top of
the function.

2) timezone/localtime.c, transtime() has a const arcument in the
implementation but non-const in declaration.

Definitly minor, but still annoying ;-)

I'm also seeing a lot of signed/unsigned mismatch, but IIRC it was said
at some point that we don't care about those.

//Magnus


Attachment

pgsql-patches by date:

Previous
From: Markus Schiltknecht
Date:
Subject: Re: Support Parallel Query Execution in Executor
Next
From: Alvaro Herrera
Date:
Subject: Re: [WIP] Add relminxid column to pg_class