diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2023-06-20 09:50:43 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2023-06-20 09:50:43 -0400 |
commit | b334612b8aee9f9a34378982d8938b201dfad323 (patch) | |
tree | a47c67522e7886c2aee179cbb260e47218c16d1d /src/backend/executor/execUtils.c | |
parent | 877bf52cffe587d33556e6259f610eb932699706 (diff) | |
download | postgresql-b334612b8aee9f9a34378982d8938b201dfad323.tar.gz postgresql-b334612b8aee9f9a34378982d8938b201dfad323.zip |
Pre-beta2 mechanical code beautification.
Run pgindent and pgperltidy. It seems we're still some ways
away from all committers doing this automatically. Now that
we have a buildfarm animal that will whine about poorly-indented
code, we'll try to keep the tree more tidy.
Discussion: https://postgr.es/m/3156045.1687208823@sss.pgh.pa.us
Diffstat (limited to 'src/backend/executor/execUtils.c')
-rw-r--r-- | src/backend/executor/execUtils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/executor/execUtils.c b/src/backend/executor/execUtils.c index 4758ab41321..c06b2288583 100644 --- a/src/backend/executor/execUtils.c +++ b/src/backend/executor/execUtils.c @@ -1354,8 +1354,8 @@ ExecGetExtraUpdatedCols(ResultRelInfo *relinfo, EState *estate) Bitmapset * ExecGetAllUpdatedCols(ResultRelInfo *relinfo, EState *estate) { - Bitmapset *ret; - MemoryContext oldcxt; + Bitmapset *ret; + MemoryContext oldcxt; oldcxt = MemoryContextSwitchTo(GetPerTupleMemoryContext(estate)); |