diff options
author | Robert Haas <rhaas@postgresql.org> | 2017-11-29 09:24:24 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2017-11-29 09:24:24 -0500 |
commit | eaedf0df7197b21182f6c341a44e4fdaa3cd6ea6 (patch) | |
tree | 710ce791d6a3a329649f0fe438c85f00199035a8 /src/backend/executor/execPartition.c | |
parent | 801386af62eac84c13feec5a643c120cf0ce33bd (diff) | |
download | postgresql-eaedf0df7197b21182f6c341a44e4fdaa3cd6ea6.tar.gz postgresql-eaedf0df7197b21182f6c341a44e4fdaa3cd6ea6.zip |
Update typedefs.list and re-run pgindent
Discussion: http://postgr.es/m/CA+TgmoaA9=1RWKtBWpDaj+sF3Stgc8sHgf5z=KGtbjwPLQVDMA@mail.gmail.com
Diffstat (limited to 'src/backend/executor/execPartition.c')
-rw-r--r-- | src/backend/executor/execPartition.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/executor/execPartition.c b/src/backend/executor/execPartition.c index 2fc411a9b5e..59a0ca4597c 100644 --- a/src/backend/executor/execPartition.c +++ b/src/backend/executor/execPartition.c @@ -184,10 +184,10 @@ ExecFindPartition(ResultRelInfo *resultRelInfo, PartitionDispatch *pd, parent = pd[0]; while (true) { - PartitionDesc partdesc; + PartitionDesc partdesc; TupleTableSlot *myslot = parent->tupslot; TupleConversionMap *map = parent->tupmap; - int cur_index = -1; + int cur_index = -1; rel = parent->reldesc; partdesc = RelationGetPartitionDesc(rel); |