You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had some issue for selecting tables in CDC mirror. if you select a partitioned table from postgres source, and do this instruction CREATE PUBLICATION peerdb_publication FOR ALL TABLES; from tutorial, you didn't receive any data from root partitioned table. because this instruction just add unpartitioned tables. for add partitioned table, you can use this instruction CREATE PUBLICATION "pub" FOR TABLE "partitioned_table" WITH (publish_via_partition_root = true);
The text was updated successfully, but these errors were encountered:
I had some issue for selecting tables in CDC mirror. if you select a partitioned table from postgres source, and do this instruction
CREATE PUBLICATION peerdb_publication FOR ALL TABLES;
from tutorial, you didn't receive any data from root partitioned table. because this instruction just add unpartitioned tables. for add partitioned table, you can use this instructionCREATE PUBLICATION "pub" FOR TABLE "partitioned_table" WITH (publish_via_partition_root = true);
The text was updated successfully, but these errors were encountered: