We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8633b4 commit b123a09Copy full SHA for b123a09
test.sql
@@ -1 +1,34 @@
1
-select * from auth0.amazing;
+create table
2
+ unknown_users (id serial primary key, address text, email text);
3
+
4
+drop table unknown_users;
5
6
+select
7
+ *
8
+from
9
+ unknown_users;
10
11
+sel 1;
12
13
14
15
+create function test_organisation_id ()
16
+ returns setof text
17
+ language plpgsql
18
+ security invoker
19
+ as $$
20
+ declre
21
+ v_organisation_id uuid;
22
+begin
23
+ return next is(private.organisation_id(), v_organisation_id, 'should return organisation_id of token');
24
+end
25
+$$;
26
27
28
+create function f1()
29
+returns void as $$
30
+declare b constant int;
31
32
+ call p1(10, b);
33
+end;
34
+$$ language plpgsql;
0 commit comments