summaryrefslogtreecommitdiffstats
path: root/src/pl/plpgsql/src/sql/plpgsql_misc.sql
diff options
context:
space:
mode:
Diffstat (limited to 'src/pl/plpgsql/src/sql/plpgsql_misc.sql')
-rw-r--r--src/pl/plpgsql/src/sql/plpgsql_misc.sql22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/pl/plpgsql/src/sql/plpgsql_misc.sql b/src/pl/plpgsql/src/sql/plpgsql_misc.sql
new file mode 100644
index 0000000..71a8fc2
--- /dev/null
+++ b/src/pl/plpgsql/src/sql/plpgsql_misc.sql
@@ -0,0 +1,22 @@
+--
+-- Miscellaneous topics
+--
+
+-- Verify that we can parse new-style CREATE FUNCTION/PROCEDURE
+do
+$$
+ declare procedure int; -- check we still recognize non-keywords as vars
+ begin
+ create function test1() returns int
+ begin atomic
+ select 2 + 2;
+ end;
+ create or replace procedure test2(x int)
+ begin atomic
+ select x + 2;
+ end;
+ end
+$$;
+
+\sf test1
+\sf test2