Skip to content

Commit 22eac95

Browse files
committed
fix: make spacing consistent
1 parent 1165703 commit 22eac95

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/encrypted/casts.sql

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
--
88

99
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
1212
AS $$
1313
BEGIN
1414
IF data IS NULL THEN
@@ -33,7 +33,7 @@ CREATE CAST (jsonb AS public.eql_v2_encrypted)
3333
--
3434

3535
CREATE FUNCTION eql_v2.to_encrypted(data text)
36-
RETURNS public.eql_v2_encrypted
36+
RETURNS public.eql_v2_encrypted
3737
IMMUTABLE STRICT PARALLEL SAFE
3838
AS $$
3939
BEGIN
@@ -60,7 +60,9 @@ CREATE CAST (text AS public.eql_v2_encrypted)
6060
--
6161

6262
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 $$
6466
BEGIN
6567
IF e IS NULL THEN
6668
RETURN NULL;

0 commit comments

Comments
 (0)