cloudflare-next-intl 0.8.7 → 0.8.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/supabase/cfni_exec.sql +2 -0
package/package.json
CHANGED
package/supabase/cfni_exec.sql
CHANGED
|
@@ -34,6 +34,7 @@ create or replace function public.cfni_exec(statement text)
|
|
|
34
34
|
returns jsonb
|
|
35
35
|
language plpgsql
|
|
36
36
|
security invoker
|
|
37
|
+
set search_path = public
|
|
37
38
|
as $$
|
|
38
39
|
declare
|
|
39
40
|
top_level_verb text;
|
|
@@ -102,6 +103,7 @@ create or replace function public.cfni_top_level_verb(statement text)
|
|
|
102
103
|
returns text
|
|
103
104
|
language plpgsql
|
|
104
105
|
immutable
|
|
106
|
+
set search_path = ''
|
|
105
107
|
as $$
|
|
106
108
|
declare
|
|
107
109
|
stripped text;
|