Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: cache lookup failed with plpgsql_check #129

Merged
merged 4 commits into from
Mar 31, 2025

Conversation

steve-chavez
Copy link
Member

@steve-chavez steve-chavez commented Mar 31, 2025

Edit: further corrected on #131

Related to supabase/postgres#1502 (comment)

This reproduces a strange bug:

create table storage_stuff();
ERROR:  cache lookup failed for function 0

-- See https://github.com/supabase/supautils/actions/runs/14163088034/job/39671624308?pr=129

That happens when:

  • share_preload_libraries=plpgsql_check

  • session_preload_libraries=supautils (it doesn't happen when it's on shared_preload_libraries)

  • skipping event triggers is done on

    supautils/src/supautils.c

    Lines 105 to 107 in 249a833

    // we can't skip execution directly inside the fmgr_hook (although we can abort it with ereport)
    // so instead we use the workaround of changing the event trigger function to a noop function
    force_noop(flinfo);

    • the root cause is that plpgsql_check caches the InvalidOid used inside the force_noop.

Instead of shared_preload_libraries
@coveralls
Copy link

coveralls commented Mar 31, 2025

Pull Request Test Coverage Report for Build 14163228823

Details

  • 1 of 1 (100.0%) changed or added relevant line in 1 file are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage remained the same at 87.047%

Totals Coverage Status
Change from base Build 13974909065: 0.0%
Covered Lines: 961
Relevant Lines: 1104

💛 - Coveralls

@steve-chavez steve-chavez marked this pull request as ready for review March 31, 2025 03:10
@steve-chavez steve-chavez requested a review from soedirgo March 31, 2025 03:22
@steve-chavez steve-chavez merged commit 8c64bf8 into supabase:master Mar 31, 2025
8 checks passed
@steve-chavez steve-chavez removed the request for review from soedirgo March 31, 2025 15:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants