10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 660ad48 commit 739c614Copy full SHA for 739c614
src/pl/plpgsql/src/pl_exec.c
@@ -8,7 +8,7 @@
8
*
9
10
* IDENTIFICATION
11
- * $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 $
12
13
*-------------------------------------------------------------------------
14
*/
@@ -5149,7 +5149,7 @@ static void
5149
validate_tupdesc_compat(TupleDesc expected, TupleDesc returned, const char *msg)
5150
{
5151
int i;
5152
- const char dropped_column_type[] = gettext_noop("n/a (dropped column)");
+ const char *dropped_column_type = gettext_noop("n/a (dropped column)");
5153
5154
if (!expected || !returned)
5155
ereport(ERROR,
0 commit comments