Missed some array updates ...
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 22 Jul 2000 04:16:13 +0000 (04:16 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 22 Jul 2000 04:16:13 +0000 (04:16 +0000)
src/backend/commands/user.c

index a91f20e910dc71a035f791dda6083f3177825200..bcc91fff620d7ba0888835c5dcb638dbaa684d54 100644 (file)
@@ -734,8 +734,8 @@ CreateGroup(CreateGroupStmt *stmt)
                int                     i;
 
                userarray = palloc(ARR_OVERHEAD(1) + length(newlist) * sizeof(int32));
-               ARR_SIZE(userarray) = ARR_OVERHEAD(1) + length(newlist) * sizeof(int32);
-               ARR_FLAGS(userarray) = 0x0;
+               userarray->size = ARR_OVERHEAD(1) + length(newlist) * sizeof(int32);
+               userarray->flags = 0;
                ARR_NDIM(userarray) = 1;/* one dimensional array */
                ARR_LBOUND(userarray)[0] = 1;   /* axis starts at one */
                ARR_DIMS(userarray)[0] = length(newlist);               /* axis is this long */
@@ -905,8 +905,8 @@ AlterGroup(AlterGroupStmt *stmt, const char *tag)
                }
 
                newarray = palloc(ARR_OVERHEAD(1) + length(newlist) * sizeof(int32));
-               ARR_SIZE(newarray) = ARR_OVERHEAD(1) + length(newlist) * sizeof(int32);
-               ARR_FLAGS(newarray) = 0x0;
+               newarray->size = ARR_OVERHEAD(1) + length(newlist) * sizeof(int32);
+               newarray->flags = 0;
                ARR_NDIM(newarray) = 1; /* one dimensional array */
                ARR_LBOUND(newarray)[0] = 1;    /* axis starts at one */
                ARR_DIMS(newarray)[0] = length(newlist);                /* axis is this long */
@@ -1013,8 +1013,8 @@ AlterGroup(AlterGroupStmt *stmt, const char *tag)
                        }
 
                        newarray = palloc(ARR_OVERHEAD(1) + length(newlist) * sizeof(int32));
-                       ARR_SIZE(newarray) = ARR_OVERHEAD(1) + length(newlist) * sizeof(int32);
-                       ARR_FLAGS(newarray) = 0x0;
+                       newarray->size = ARR_OVERHEAD(1) + length(newlist) * sizeof(int32);
+                       newarray->flags = 0;
                        ARR_NDIM(newarray) = 1;         /* one dimensional array */
                        ARR_LBOUND(newarray)[0] = 1;            /* axis starts at one */
                        ARR_DIMS(newarray)[0] = length(newlist);        /* axis is this long */