Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commite9f38f8

Browse files
committed
Merge branch 'master' into more_tests
2 parentsb63f9c5 +01e7631 commite9f38f8

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

‎contrib/mmts/multimaster.c‎

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ typedef enum
101101
#defineMTM_MAP_SIZE MTM_HASH_SIZE
102102
#defineMIN_WAIT_TIMEOUT 1000
103103
#defineMAX_WAIT_TIMEOUT 100000
104-
#defineMAX_WAIT_LOOPS100 // 1000000
104+
#defineMAX_WAIT_LOOPS10000 // 1000000
105105
#defineSTATUS_POLL_DELAY USECS_PER_SEC
106106

107107
void_PG_init(void);
@@ -2915,6 +2915,7 @@ void MtmDropNode(int nodeId, bool dropSlot)
29152915

29162916
MtmUnlock();
29172917
}
2918+
29182919
staticvoid
29192920
MtmOnProcExit(intcode,Datumarg)
29202921
{
@@ -3078,9 +3079,7 @@ void MtmSetupReplicationHooks(struct PGLogicalHooks* hooks)
30783079

30793080
voidMtmBeginSession(intnodeId)
30803081
{
3081-
charslot_name[MULTIMASTER_MAX_SLOT_NAME_SIZE];
30823082
MtmLockNode(nodeId,LW_EXCLUSIVE);
3083-
sprintf(slot_name,MULTIMASTER_SLOT_PATTERN,nodeId);
30843083
Assert(replorigin_session_origin==InvalidRepOriginId);
30853084
replorigin_session_origin=Mtm->nodes[nodeId-1].originId;
30863085
Assert(replorigin_session_origin!=InvalidRepOriginId);

‎contrib/mmts/pglogical_apply.c‎

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,14 @@ process_remote_commit(StringInfo in)
602602

603603
origin_node=pq_getmsgbyte(in);
604604
origin_lsn=pq_getmsgint64(in);
605-
Mtm->nodes[origin_node-1].restartLsn=origin_lsn;
605+
606+
if (Mtm->nodes[origin_node-1].restartLsn<origin_lsn) {
607+
Mtm->nodes[origin_node-1].restartLsn=origin_lsn;
608+
}
609+
if (origin_node!=MtmReplicationNodeId) {
610+
replorigin_advance(Mtm->nodes[origin_node-1].originId,origin_lsn,GetXLogInsertRecPtr(),
611+
false/* backward */ , false/* WAL */ );
612+
}
606613

607614
Assert(replorigin_session_origin==InvalidRepOriginId);
608615

‎contrib/mmts/tests/run.sh‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
./dtmbench \
2-
-c"dbname=postgres host=localhost port=5432 sslmode=disable" \
3-
-c"dbname=postgres host=localhost port=5433 sslmode=disable" \
4-
-c"dbname=postgres host=localhost port=5434 sslmode=disable" \
2+
-c"dbname=regression host=localhost port=5432 sslmode=disable" \
3+
-c"dbname=regression host=localhost port=5433 sslmode=disable" \
4+
-c"dbname=regression host=localhost port=5434 sslmode=disable" \
55
-n 1000 -a 1000 -w 10 -r 1$*

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp