If table is partitioned, the size of the table is not shown
- Dominant language
- Java
- Stars
- 51.8k
- Forks
- 4.4k
- Avg merge
- 3d 13h
- Merged PRs (30d)
- 183
Description
### Description
- Execute this code:
```
CREATE TABLE public.partitioned1 (
id int4 NOT NULL,
val int4 NOT NULL,
CONSTRAINT pk_partitioned1 PRIMARY KEY (id, val)
)
PARTITION BY RANGE (id);
CREATE TABLE public.partitioned2 (
id int4 NOT NULL,
val int4 NOT NULL,
CONSTRAINT pk_partitioned2 PRIMARY KEY (id, val)
);
```
- open a list of tables in public schema in Database Navigator
Here is the result:

### DBeaver Version
Community Edition 24.1.5.202408012322
### Operating System
Windows 10
### Database and driver
_No response_
### Steps to reproduce
_No response_
### Additional context
_No response_
Contributor guide
Assessment
This issue has not been assessed yet.