@soulbatical/tetra-core 0.1.21 → 0.1.22
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.
|
@@ -97,7 +97,7 @@ export async function checkExecSQLExists(supabase) {
|
|
|
97
97
|
FROM pg_proc p
|
|
98
98
|
JOIN pg_namespace n ON n.oid = p.pronamespace
|
|
99
99
|
WHERE n.nspname = 'public' AND p.proname = 'exec_sql'
|
|
100
|
-
LIMIT 1
|
|
100
|
+
LIMIT 1
|
|
101
101
|
`,
|
|
102
102
|
});
|
|
103
103
|
if (securityCheck.error || !securityCheck.data) {
|