View Revisions: Issue #6627

Summary 0006627: DDL replication stuck from reader on another connection
Revision 2024-10-28 15:01 by elong
Description Found DDL replication with multiple alters on different tables in the same batch were stuck trying to read metadata about the next table. The DDL reader is using SqlTemplate to query metadata, which uses a new connection, but it should be using the existing connection passed in.
Revision 2024-10-28 13:22 by elong
Description When DDL replication creates or alters a table in the same batch with insert, update, and deletes, the transaction can block itself trying to lookup table metadata. The DDL reader is using SqlTemplate to query metadata, which uses a new connection, but it should be using the existing connection passed in.