File tree 1 file changed +10
-1
lines changed
1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -133,6 +133,7 @@ static char const* MtmGetName(void);
133
133
static size_t MtmGetTransactionStateSize (void );
134
134
static void MtmSerializeTransactionState (void * ctx );
135
135
static void MtmDeserializeTransactionState (void * ctx );
136
+ static void MtmInitializeSequence (int64 * start , int64 * step );
136
137
137
138
static void MtmCheckClusterLock (void );
138
139
static void MtmCheckSlots (void );
@@ -170,7 +171,8 @@ static TransactionManager MtmTM = {
170
171
MtmGetName ,
171
172
MtmGetTransactionStateSize ,
172
173
MtmSerializeTransactionState ,
173
- MtmDeserializeTransactionState
174
+ MtmDeserializeTransactionState ,
175
+ MtmInitializeSequence
174
176
};
175
177
176
178
char const * const MtmNodeStatusMnem [] =
@@ -348,6 +350,13 @@ MtmDeserializeTransactionState(void* ctx)
348
350
}
349
351
350
352
353
+ static void
354
+ MtmInitializeSequence (int64 * start , int64 * step )
355
+ {
356
+ * start = MtmNodeId ;
357
+ * step = MtmMaxNodes ;
358
+ }
359
+
351
360
352
361
/*
353
362
* -------------------------------------------
You can’t perform that action at this time.
0 commit comments