]> granicus.if.org Git - postgresql/commitdiff
Fix compile failure
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Wed, 10 Jul 2019 13:01:28 +0000 (09:01 -0400)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Wed, 10 Jul 2019 13:13:50 +0000 (09:13 -0400)
REL_11_STABLE's configure does not select C99 mode by default, so using
C99 block initializer broke the build for some compilers.  Revert to C89
in that branch.

Author: MichaĆ«l Paquier
Discussion: https://postgr.es/m/20190710070122.GE1031@paquier.xyz

src/backend/commands/tablecmds.c

index 5fbe7242c42769a836362fb793c8112d049a606e..70bbe052e19f64df7c34d117c54ee0cf606be0a4 100644 (file)
@@ -15271,6 +15271,7 @@ CloneRowTriggersToPartition(Relation parent, Relation partition)
                if (trigForm->tgnargs > 0)
                {
                        char       *p;
+                       int                     i;
 
                        value = heap_getattr(tuple, Anum_pg_trigger_tgargs,
                                                                 RelationGetDescr(pg_trigger), &isnull);
@@ -15280,7 +15281,7 @@ CloneRowTriggersToPartition(Relation parent, Relation partition)
 
                        p = (char *) VARDATA_ANY(DatumGetByteaPP(value));
 
-                       for (int i = 0; i < trigForm->tgnargs; i++)
+                       for (i = 0; i < trigForm->tgnargs; i++)
                        {
                                trigargs = lappend(trigargs, makeString(pstrdup(p)));
                                p += strlen(p) + 1;