Skip to content

COPY progress reporting is not supported #40

Open
@onderkalaci

Description

@onderkalaci

When you normally do COPY FROM/TO on heap tables, they show up in pg_stat_progress_copy view.

With pg_parquet, when I do COPY .. TO .. (parquet), the view is not populated:

select * from pg_stat_progress_copy;
(0 rows)

When I do COPY .. FROM (parquet), bytes_total is not populated, which is making the progress reporting less useful than it could be:

select * from pg_stat_progress_copy;
-[ RECORD 1 ]----+----------
pid              | 60146
datid            | 5
datname          | postgres
relid            | 24770
command          | COPY FROM
type             | CALLBACK
bytes_processed  | 389524432
bytes_total      | 0
tuples_processed | 22978000
tuples_excluded  | 0
tuples_skipped   | 0

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions