-
-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Selecting a related object modified by an AFTER INSERT TRIGGER
does not show the inserted data
#3286
Comments
Does this also happen when you have the trigger on the table, but both tables are hidden and exposed via views, through which you access those tables? If yes: What if the views have INSTEAD OF triggers managing the insert to the base table - does it still happen, then? Another workaround could be to turn the after trigger into a before trigger, get a sequence number manually and set Does it still happen if the CTE in which we do the INSERT is MATERIALIZED? But overall, I don't really understand the use-case of such an after trigger, when everything happens on a table. I can't pass any data for the related insert, because everything is a table. I have many similar situations, but in all of them I use a view, insert into the view - and then have an INSTEAD OF trigger, which runs both inserts ( |
As a disclaimer, this was an issue reported by a user in a Discord channel for Supabase. They mentioned that they can use workarounds, but was just curious to know why it behaved this way. The answer is mentioned in the linked PR and goes as follows: "The sub-statements in WITH are executed concurrently with each other and with the main query", according to the PostgreSQL docs) and confirmed by this this PostgreSQL Q/A. This applies to how PostgREST inserts data and selects related tables afterwards.
Yes and yes. It behaves in the same way.
Not sure if it may work since the related insert still wouldn't have the newly inserted rows from the trigger. The results can't "see" each other between CTEs according to the docs (except when using
Using
Yes, I agree, it seems to be for a special case that uses only the ID of the base table (in the example by generating two |
Wait, but we are using RETURNING, right? |
Ah yes, but we're only WITH pgrst_source AS (
INSERT INTO base_table (...)
SELECT ...
RETURNING * -- returns only columns from the base_table
)
SELECT *
-- pgrst_source "sees" the values of base_table inside the WITH due to the RETURNING
FROM pgrst_source
-- other_table doesn't "see" the change inside the trigger (any trigger I believe)
-- because it was done inside the WITH and it isn't RETURNING those values
JOIN other_table ... Unless I misunderstood something. |
Maybe related - #2933 |
As mentioned in #3226 (comment), I think the solution to this problem is to provide relational inserts, thus allowing this kind of insert without a trigger. |
PostgREST: 12.0.2
PostgreSQL: 14.9
Problem
Doing a
POST
request to a resource that has anAFTER INSERT TRIGGER
that inserts data to another table, and selecting said table as an embedded resource in the request, shows no data in the related response.Example
Request:
Result:
Expected:
Proposal
Since we do the whole mutation/selection inside a single query, then fixing this might not be possible. I proposed to document this as a limitation (#3254) but it could also be considered as a bug if changing the design is not a problem, and it should not be documented then.
A workaround would be to do the related query inside a function, which is related to #818.
The text was updated successfully, but these errors were encountered: