]> granicus.if.org Git - postgresql/commitdiff
Fixed bug that caused arrays of varchar to be output with incomplete name.
authorMichael Meskes <meskes@postgresql.org>
Sun, 2 Mar 2008 10:57:21 +0000 (10:57 +0000)
committerMichael Meskes <meskes@postgresql.org>
Sun, 2 Mar 2008 10:57:21 +0000 (10:57 +0000)
src/interfaces/ecpg/preproc/type.c

index 95c2c38dfb6b67c39a64671340056d25c3d2fd5c..7a81c349e02e100a2bdbb13943bc3c03bcfdf6a6 100644 (file)
@@ -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)
                                        {