tree-sitter-plpgsql/test/corpus/plpgsql/get_diagnostics_statement.txt

26 lines
687 B
Plaintext
Raw Normal View History

2021-09-01 18:47:59 +03:00
================================================================================
get diagnostics
================================================================================
DO $$
BEGIN
get current diagnostics foo = ROW_COUNT;
get diagnostics bar := ROW_COUNT;
END
$$;
--------------------------------------------------------------------------------
(source_file
(do_block
(block
(dollar_quote)
(body
(get_diagnostics_statement
(assign_statement
(identifier)
(identifier)))
(get_diagnostics_statement
(assign_statement
(identifier)
(identifier))))
(dollar_quote))))