mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 14:15:49 -06:00
[GH-ISSUE #6] Child tables are not dispayed #5
Labels
No labels
bug
bug
enhancement
pull-request
question
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/pgadmin3#5
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @glushakov on GitHub (May 6, 2020).
Original GitHub issue: https://github.com/levinsv/pgadmin3/issues/6
Hi. With inherit partititioning, child tables are not display in tree. In parent table (partitions sub menu) there are also not.
Checked on pg 10
@levinsv commented on GitHub (May 7, 2020):
Hi.
In my test case, everything is Ok.
What are your SQL commands?
@glushakov commented on GitHub (May 8, 2020):
it looks like problem appear when child table placed in different schema then parent table.
My case:
CREATE TABLE public.history
(
itemid bigint NOT NULL,
clock integer NOT NULL DEFAULT 0,
value numeric(16,4) NOT NULL DEFAULT 0.0000,
ns integer NOT NULL DEFAULT 0
);
CREATE TABLE partitions.history_p2020_04_09
(
CONSTRAINT history_p2020_04_09_clock_check CHECK (clock >= 1586379600 AND clock < 1586466000)
)
INHERITS (public.history)
WITH (
OIDS=FALSE
);
@glushakov commented on GitHub (May 8, 2020):
with declarative partitioning the situation is similar