We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I've a huge table where the data is partitioned by foreign key. Here is my structure of tables:
CREATE TABLE store(id uuid, name text); CREATE TABLE transactions(store uuid REFERENCES store(id), snapshotdate timestamp, trandate date, tranuser text);
I want the transactions table should have partitions based on store(id). How can I use pg_pathman for this?
The text was updated successfully, but these errors were encountered:
On #148 was some discussion related with foreign keys, basically we don't support them on partitions.
Sorry, something went wrong.
No branches or pull requests
I've a huge table where the data is partitioned by foreign key. Here is my structure of tables:
I want the transactions table should have partitions based on store(id). How can I use pg_pathman for this?
The text was updated successfully, but these errors were encountered: