summaryrefslogtreecommitdiffstats
path: root/src/pl/plpython/expected/plpython_do.out
blob: d131a4c0ed631cbbd6392db55426512ebe526cb5 (plain)
1
2
3
4
5
6
7
8
DO $$ plpy.notice("This is plpython3u.") $$ LANGUAGE plpython3u;
NOTICE:  This is plpython3u.
DO $$ raise Exception("error test") $$ LANGUAGE plpython3u;
ERROR:  Exception: error test
CONTEXT:  Traceback (most recent call last):
  PL/Python anonymous code block, line 1, in <module>
    raise Exception("error test") 
PL/Python anonymous code block