Fix unportable syntax used in recent patch. Per results from
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 24 Sep 2008 14:40:00 +0000 (14:40 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 24 Sep 2008 14:40:00 +0000 (14:40 +0000)
buildfarm member 'bear'.

src/pl/plpgsql/src/pl_exec.c

index afc7963148a451bcdd8268364e0590f38b7b715f..e2218f88315aee9b674e698b90a6520532c0bf1b 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.220 2008/09/09 15:14:08 alvherre Exp $
+ *       $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.221 2008/09/24 14:40:00 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -5149,7 +5149,7 @@ static void
 validate_tupdesc_compat(TupleDesc expected, TupleDesc returned, const char *msg)
 {
        int                i;
-       const char dropped_column_type[] = gettext_noop("n/a (dropped column)");
+       const char *dropped_column_type = gettext_noop("n/a (dropped column)");
 
        if (!expected || !returned)
                ereport(ERROR,