aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2017-04-05 00:38:25 -0400
committerPeter Eisentraut <peter_e@gmx.net>2017-04-05 00:38:25 -0400
commitafd79873a0b151bfbe5312acebfe361da09c11fd (patch)
tree57955f069c92898a61b579e34f25ad0c93024d71 /src/backend/executor
parent193f5f9e913f3ead6609cc99be82578e0dedd409 (diff)
downloadpostgresql-afd79873a0b151bfbe5312acebfe361da09c11fd.tar.gz
postgresql-afd79873a0b151bfbe5312acebfe361da09c11fd.zip
Capitalize names of PLs consistently
Author: Daniel Gustafsson <daniel@yesql.se>
Diffstat (limited to 'src/backend/executor')
-rw-r--r--src/backend/executor/spi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/executor/spi.c b/src/backend/executor/spi.c
index 3a89ccd913f..ca547dc6d9b 100644
--- a/src/backend/executor/spi.c
+++ b/src/backend/executor/spi.c
@@ -1582,7 +1582,7 @@ SPI_result_code_string(int code)
* SPI_plan_get_plan_sources --- get a SPI plan's underlying list of
* CachedPlanSources.
*
- * This is exported so that pl/pgsql can use it (this beats letting pl/pgsql
+ * This is exported so that PL/pgSQL can use it (this beats letting PL/pgSQL
* look directly into the SPIPlan for itself). It's not documented in
* spi.sgml because we'd just as soon not have too many places using this.
*/
@@ -1598,7 +1598,7 @@ SPI_plan_get_plan_sources(SPIPlanPtr plan)
* if the SPI plan contains exactly one CachedPlanSource. If not,
* return NULL. Caller is responsible for doing ReleaseCachedPlan().
*
- * This is exported so that pl/pgsql can use it (this beats letting pl/pgsql
+ * This is exported so that PL/pgSQL can use it (this beats letting PL/pgSQL
* look directly into the SPIPlan for itself). It's not documented in
* spi.sgml because we'd just as soon not have too many places using this.
*/