Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions pglogical_functions.c
Original file line number Diff line number Diff line change
Expand Up @@ -1980,6 +1980,11 @@ pglogical_show_repset_table_info(PG_FUNCTION_ARGS)
/* Skip dropped columns. */
if (att->attisdropped)
continue;
#if PG_VERSION_NUM >= 120000
/* Skip generated columns as these are not COPY-able */
if (att->attgenerated)
continue;
#endif

/* Skip filtered columns if any. */
if (tableinfo->att_list &&
Expand Down