mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-07 12:17:34 +08:00
7 lines
268 B
Plaintext
7 lines
268 B
Plaintext
DO $$ plpy.notice("This is plpythonu.") $$ LANGUAGE plpythonu;
|
|
NOTICE: This is plpythonu.
|
|
CONTEXT: PL/Python anonymous code block
|
|
DO $$ nonsense $$ LANGUAGE plpythonu;
|
|
ERROR: NameError: global name 'nonsense' is not defined
|
|
CONTEXT: PL/Python anonymous code block
|