-
Notifications
You must be signed in to change notification settings - Fork 883
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
Add support for transition tables #6901
base: main
Are you sure you want to change the base?
Conversation
In the pg source there is explicit comment blocking transition tables for partitioned tables did you investigate the reason for this? I think you might have to do attribute mapping if we decide to allow this. This also needs rebase since PG13 support has been removed. |
19f0a37
to
f44e586
Compare
f44e586
to
c8c16f6
Compare
Note: It is possible to add a trigger on an inherited table, but that might require an attribute re-mapping so not sure we should support it. The situation where this can be a problem is if we modify the parent table (by adding and removing attributes) and then add new inherited tables they will have a different set of attribute numbers, which might require a re-mapping of the attributes. |
@antekresic, @erimatnor: please review this pull request.
|
c8c16f6
to
26fcff1
Compare
This adds support for using statement-level triggers with transition tables to hypertables and chunks of hypertables. Co-Authored-By: James Sewell <[email protected]>
26fcff1
to
624471d
Compare
This adds support for using statement-level triggers with transition tables to hypertables and chunks of hypertables.