Skip to content

Add support for generated columns #77

Open
@imor

Description

@imor

Generated columns like in the following table are not included in the table copies or cdc stream:

CREATE TABLE people (
    ...,
    height_cm numeric,
    height_in numeric GENERATED ALWAYS AS (height_cm / 2.54) STORED
);

Add support for synthetically generating these columns in pg_replicate by evaluating the expressions of the generated columns.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions