This style is frowned upon. I inadvertently introduced one in commit
fe0e0b4fc7f0. (My compiler does not complain about it, even though
-Wdeclaration-after-statement is specified. Weird.)
Author: Masahiko Sawada
while (res != NULL)
{
- /* look now at the next result to know whether it is the last */
+ bool is_last;
+
+ /* peek at the next result to know whether the current is last */
next_res = PQgetResult(st->con);
- bool is_last = (next_res == NULL);
+ is_last = (next_res == NULL);
switch (PQresultStatus(res))
{