From: Michael Meskes Date: Sun, 2 Mar 2008 10:57:21 +0000 (+0000) Subject: Fixed bug that caused arrays of varchar to be output with incomplete name. X-Git-Tag: REL8_3_1~33 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8a7c17d0ee93abeaa04d3fe913ba0604bd5123d2;p=postgresql Fixed bug that caused arrays of varchar to be output with incomplete name. --- diff --git a/src/interfaces/ecpg/preproc/type.c b/src/interfaces/ecpg/preproc/type.c index 95c2c38dfb..7a81c349e0 100644 --- a/src/interfaces/ecpg/preproc/type.c +++ b/src/interfaces/ecpg/preproc/type.c @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/type.c,v 1.77 2007/12/21 14:33:20 meskes Exp $ */ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/type.c,v 1.77.2.1 2008/03/02 10:57:21 meskes Exp $ */ #include "postgres_fe.h" @@ -259,7 +259,7 @@ ECPGdump_a_type(FILE *o, const char *name, struct ECPGtype * type, ECPGdump_a_simple(o, name, type->u.element->type, - type->u.element->size, type->size, NULL, prefix, type->lineno); + type->u.element->size, type->size, NULL, prefix, type->u.element->lineno); if (ind_type != NULL) {