summaryrefslogtreecommitdiff
path: root/src/pl
diff options
context:
space:
mode:
authorTom Lane2017-03-26 15:36:46 +0000
committerTom Lane2017-03-26 15:36:46 +0000
commit244dd95ce9d9831f8498f5746860325f7adcecbf (patch)
treee086ca5b43c842d3067be9c815eae670c9d115e2 /src/pl
parent6a101b0aed78e09b51e2162e6b68a4aeab52b61e (diff)
Update some obsolete comments.
Fix a few stray references to expression eval functions that don't exist anymore or don't take the same input representation they used to.
Diffstat (limited to 'src/pl')
-rw-r--r--src/pl/plpgsql/src/pl_exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pl/plpgsql/src/pl_exec.c b/src/pl/plpgsql/src/pl_exec.c
index 84af8155375..c27935b51ba 100644
--- a/src/pl/plpgsql/src/pl_exec.c
+++ b/src/pl/plpgsql/src/pl_exec.c
@@ -4759,7 +4759,7 @@ exec_assign_value(PLpgSQL_execstate *estate,
* fixed-length array types we skip the assignment. We can't
* support assignment of a null entry into a fixed-length
* array, either, so that's a no-op too. This is all ugly but
- * corresponds to the current behavior of ExecEvalArrayRef().
+ * corresponds to the current behavior of execExpr*.c.
*/
if (arrayelem->arraytyplen > 0 && /* fixed-length array? */
(oldarrayisnull || isNull))