Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 62f7059

Browse files
committed
issues to serial_schedule
1 parent b56ddf9 commit 62f7059

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

multimaster.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3481,7 +3481,7 @@ static void MtmProcessUtility(Node *parsetree, const char *queryString,
34813481
case T_CheckPointStmt:
34823482
case T_ReindexStmt:
34833483
case T_RefreshMatViewStmt:
3484-
skipCommand = true;
3484+
skipCommand = true;
34853485
break;
34863486

34873487
/* Save GUC context for consequent DDL execution */

pglogical_apply.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -968,6 +968,12 @@ void MtmExecutor(int id, void* work, size_t size)
968968
while (true) {
969969
char action = pq_getmsgbyte(&s);
970970
MTM_LOG1("%d: REMOTE process action %c", MyProcPid, action);
971+
#if 0
972+
if (Mtm->status == MTM_RECOVERY) {
973+
MTM_LOG1("Replay action %c[%x]", action, s.data[s.cursor]);
974+
}
975+
#endif
976+
971977
switch (action) {
972978
/* BEGIN */
973979
case 'B':

0 commit comments

Comments
 (0)