summaryrefslogtreecommitdiff
path: root/src/pl
diff options
context:
space:
mode:
authorPeter Eisentraut2017-04-05 04:38:25 +0000
committerPeter Eisentraut2017-04-05 04:38:25 +0000
commitafd79873a0b151bfbe5312acebfe361da09c11fd (patch)
tree57955f069c92898a61b579e34f25ad0c93024d71 /src/pl
parent193f5f9e913f3ead6609cc99be82578e0dedd409 (diff)
Capitalize names of PLs consistently
Author: Daniel Gustafsson <daniel@yesql.se>
Diffstat (limited to 'src/pl')
-rw-r--r--src/pl/plpgsql/src/Makefile2
-rw-r--r--src/pl/plpgsql/src/pl_gram.y4
-rw-r--r--src/pl/tcl/Makefile2
-rw-r--r--src/pl/tcl/pltcl.c2
4 files changed, 5 insertions, 5 deletions
diff --git a/src/pl/plpgsql/src/Makefile b/src/pl/plpgsql/src/Makefile
index e073b2abd0a..95348179ac3 100644
--- a/src/pl/plpgsql/src/Makefile
+++ b/src/pl/plpgsql/src/Makefile
@@ -1,6 +1,6 @@
#-------------------------------------------------------------------------
#
-# Makefile for the pl/pgsql procedural language
+# Makefile for the PL/pgSQL procedural language
#
# src/pl/plpgsql/src/Makefile
#
diff --git a/src/pl/plpgsql/src/pl_gram.y b/src/pl/plpgsql/src/pl_gram.y
index 29729df550e..94f1f585930 100644
--- a/src/pl/plpgsql/src/pl_gram.y
+++ b/src/pl/plpgsql/src/pl_gram.y
@@ -2862,11 +2862,11 @@ make_execsql_stmt(int firsttoken, int location)
* clause lurking within it, and parse that via read_into_target().
*
* Because INTO is sometimes used in the main SQL grammar, we have to be
- * careful not to take any such usage of INTO as a pl/pgsql INTO clause.
+ * careful not to take any such usage of INTO as a PL/pgSQL INTO clause.
* There are currently three such cases:
*
* 1. SELECT ... INTO. We don't care, we just override that with the
- * pl/pgsql definition.
+ * PL/pgSQL definition.
*
* 2. INSERT INTO. This is relatively easy to recognize since the words
* must appear adjacently; but we can't assume INSERT starts the command,
diff --git a/src/pl/tcl/Makefile b/src/pl/tcl/Makefile
index 0275c125b12..b8971d3cc8f 100644
--- a/src/pl/tcl/Makefile
+++ b/src/pl/tcl/Makefile
@@ -1,6 +1,6 @@
#-------------------------------------------------------------------------
#
-# Makefile for the pl/tcl procedural language
+# Makefile for the PL/Tcl procedural language
#
# src/pl/tcl/Makefile
#
diff --git a/src/pl/tcl/pltcl.c b/src/pl/tcl/pltcl.c
index 5a48e5d175a..89bb46fb4a9 100644
--- a/src/pl/tcl/pltcl.c
+++ b/src/pl/tcl/pltcl.c
@@ -2535,7 +2535,7 @@ pltcl_SPI_prepare(ClientData cdata, Tcl_Interp *interp,
* occur. FIXME someday.
************************************************************/
plan_cxt = AllocSetContextCreate(TopMemoryContext,
- "PL/TCL spi_prepare query",
+ "PL/Tcl spi_prepare query",
ALLOCSET_SMALL_SIZES);
MemoryContextSwitchTo(plan_cxt);
qdesc = (pltcl_query_desc *) palloc0(sizeof(pltcl_query_desc));