-
-
Notifications
You must be signed in to change notification settings - Fork 46
Open
Labels
Description
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.