Skip to content

Commit 88199b9

Browse files
committed
Fix a couple of typos
PL/pgSQL was misspelled in a few places, so fix these. Author: Zhang Mingli Reviewed-by: Richard Guo Discussion: https://postgr.es/m/1bd41572-9cd9-465e-9f59-ee45385e51b4@Spark
1 parent 869650f commit 88199b9

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/pl/plpython/expected/plpython_ereport.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ CONTEXT: Traceback (most recent call last):
7979
PL/Python anonymous code block, line 1, in <module>
8080
plpy.info('first message', 'second message', message='third message')
8181
PL/Python anonymous code block
82-
-- raise exception in python, handle exception in plgsql
82+
-- raise exception in python, handle exception in plpgsql
8383
CREATE OR REPLACE FUNCTION raise_exception(_message text, _detail text DEFAULT NULL, _hint text DEFAULT NULL,
8484
_sqlstate text DEFAULT NULL,
8585
_schema_name text DEFAULT NULL,

src/pl/plpython/sql/plpython_ereport.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ DO $$ plpy.info('unsupported argument', blabla='fooboo') $$ LANGUAGE plpython3u;
4040
DO $$ plpy.info('first message', message='second message') $$ LANGUAGE plpython3u;
4141
DO $$ plpy.info('first message', 'second message', message='third message') $$ LANGUAGE plpython3u;
4242

43-
-- raise exception in python, handle exception in plgsql
43+
-- raise exception in python, handle exception in plpgsql
4444
CREATE OR REPLACE FUNCTION raise_exception(_message text, _detail text DEFAULT NULL, _hint text DEFAULT NULL,
4545
_sqlstate text DEFAULT NULL,
4646
_schema_name text DEFAULT NULL,

src/test/modules/test_pg_dump/t/001_base.pl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -208,15 +208,15 @@
208208
],
209209
},
210210

211-
# plgsql in the list blocks the dump of extension test_pg_dump
211+
# plpgsql in the list blocks the dump of extension test_pg_dump
212212
without_extension => {
213213
dump_cmd => [
214214
'pg_dump', '--no-sync', "--file=$tempdir/without_extension.sql",
215215
'--extension=plpgsql', 'postgres',
216216
],
217217
},
218218

219-
# plgsql in the list of extensions blocks the dump of extension
219+
# plpgsql in the list of extensions blocks the dump of extension
220220
# test_pg_dump. "public" is the schema used by the extension
221221
# test_pg_dump, but none of its objects should be dumped.
222222
without_extension_explicit_schema => {
@@ -230,7 +230,7 @@
230230
],
231231
},
232232

233-
# plgsql in the list of extensions blocks the dump of extension
233+
# plpgsql in the list of extensions blocks the dump of extension
234234
# test_pg_dump, but not the dump of objects not dependent on the
235235
# extension located on a schema maintained by the extension.
236236
without_extension_internal_schema => {

0 commit comments

Comments
 (0)