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 77--
88
99CREATE 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
1212AS $$
1313BEGIN
1414 IF data IS NULL THEN
@@ -33,7 +33,7 @@ CREATE CAST (jsonb AS public.eql_v2_encrypted)
3333--
3434
3535CREATE FUNCTION eql_v2 .to_encrypted(data text )
36- RETURNS public .eql_v2_encrypted
36+ RETURNS public .eql_v2_encrypted
3737 IMMUTABLE STRICT PARALLEL SAFE
3838AS $$
3939BEGIN
@@ -60,7 +60,9 @@ CREATE CAST (text AS public.eql_v2_encrypted)
6060--
6161
6262CREATE FUNCTION eql_v2 .to_jsonb(e public .eql_v2_encrypted )
63- RETURNS jsonb AS $$
63+ RETURNS jsonb
64+ IMMUTABLE STRICT PARALLEL SAFE
65+ AS $$
6466BEGIN
6567 IF e IS NULL THEN
6668 RETURN NULL ;
You can’t perform that action at this time.
0 commit comments