File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 7
7
--
8
8
9
9
CREATE FUNCTION eql_v2 .to_encrypted(data jsonb)
10
- RETURNS public .eql_v2_encrypted
11
- IMMUTABLE STRICT PARALLEL SAFE
10
+ RETURNS public .eql_v2_encrypted
11
+ IMMUTABLE STRICT PARALLEL SAFE
12
12
AS $$
13
13
BEGIN
14
14
IF data IS NULL THEN
@@ -33,7 +33,7 @@ CREATE CAST (jsonb AS public.eql_v2_encrypted)
33
33
--
34
34
35
35
CREATE FUNCTION eql_v2 .to_encrypted(data text )
36
- RETURNS public .eql_v2_encrypted
36
+ RETURNS public .eql_v2_encrypted
37
37
IMMUTABLE STRICT PARALLEL SAFE
38
38
AS $$
39
39
BEGIN
@@ -60,7 +60,9 @@ CREATE CAST (text AS public.eql_v2_encrypted)
60
60
--
61
61
62
62
CREATE FUNCTION eql_v2 .to_jsonb(e public .eql_v2_encrypted )
63
- RETURNS jsonb AS $$
63
+ RETURNS jsonb
64
+ IMMUTABLE STRICT PARALLEL SAFE
65
+ AS $$
64
66
BEGIN
65
67
IF e IS NULL THEN
66
68
RETURN NULL ;
You can’t perform that action at this time.
0 commit comments