mirror of
https://github.com/postgres/postgres.git
synced 2025-07-17 06:41:09 +03:00
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
This commit is contained in:
@ -79,7 +79,7 @@ CONTEXT: Traceback (most recent call last):
|
||||
PL/Python anonymous code block, line 1, in <module>
|
||||
plpy.info('first message', 'second message', message='third message')
|
||||
PL/Python anonymous code block
|
||||
-- raise exception in python, handle exception in plgsql
|
||||
-- raise exception in python, handle exception in plpgsql
|
||||
CREATE OR REPLACE FUNCTION raise_exception(_message text, _detail text DEFAULT NULL, _hint text DEFAULT NULL,
|
||||
_sqlstate text DEFAULT NULL,
|
||||
_schema_name text DEFAULT NULL,
|
||||
|
@ -40,7 +40,7 @@ DO $$ plpy.info('unsupported argument', blabla='fooboo') $$ LANGUAGE plpython3u;
|
||||
DO $$ plpy.info('first message', message='second message') $$ LANGUAGE plpython3u;
|
||||
DO $$ plpy.info('first message', 'second message', message='third message') $$ LANGUAGE plpython3u;
|
||||
|
||||
-- raise exception in python, handle exception in plgsql
|
||||
-- raise exception in python, handle exception in plpgsql
|
||||
CREATE OR REPLACE FUNCTION raise_exception(_message text, _detail text DEFAULT NULL, _hint text DEFAULT NULL,
|
||||
_sqlstate text DEFAULT NULL,
|
||||
_schema_name text DEFAULT NULL,
|
||||
|
Reference in New Issue
Block a user