diff --git a/packages/postgrest/supabase/tests/latest-builds-domains.sql b/packages/postgrest/supabase/tests/latest-builds-domains.sql index 27aa6eb15fb7..82e1d79aa9ae 100644 --- a/packages/postgrest/supabase/tests/latest-builds-domains.sql +++ b/packages/postgrest/supabase/tests/latest-builds-domains.sql @@ -1,4 +1,5 @@ BEGIN; +SET LOCAL search_path = pgtap, public; -- SET LOCAL search_path = pgtap,public; diff --git a/packages/postgrest/supabase/tests/latest-builds-projects.sql b/packages/postgrest/supabase/tests/latest-builds-projects.sql index 1aae65cbba0d..dc183cb0377b 100644 --- a/packages/postgrest/supabase/tests/latest-builds-projects.sql +++ b/packages/postgrest/supabase/tests/latest-builds-projects.sql @@ -1,4 +1,5 @@ BEGIN; +SET LOCAL search_path = pgtap, public; -- Initialize the testing environment without planning any specific number of tests SELECT no_plan(); diff --git a/packages/postgrest/supabase/tests/project-domains.sql b/packages/postgrest/supabase/tests/project-domains.sql index a5da845c3b9f..b1120da71f9a 100644 --- a/packages/postgrest/supabase/tests/project-domains.sql +++ b/packages/postgrest/supabase/tests/project-domains.sql @@ -1,5 +1,5 @@ BEGIN; --- SET LOCAL search_path = pgtap,public; +SET LOCAL search_path = pgtap, public; -- Initialize the testing environment without planning any specific number of tests -- We are using SELECT no_plan() because we don't specify the exact number of tests upfront. SELECT no_plan();