File tree Expand file tree Collapse file tree 2 files changed +4
-10
lines changed Expand file tree Collapse file tree 2 files changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -239,7 +239,10 @@ struct mtr_t {
239
239
/* * Start a mini-transaction.
240
240
@param sync true if it is a synchronous mini-transaction
241
241
@param read_only true if read only mini-transaction */
242
- void start (bool sync = true , bool read_only = false );
242
+ void start (bool sync = true , bool read_only = false )
243
+ {
244
+ start (NULL , sync, read_only);
245
+ }
243
246
244
247
/* * Start a mini-transaction.
245
248
@param sync true if it is a synchronous mini-transaction
Original file line number Diff line number Diff line change @@ -491,15 +491,6 @@ mtr_write_log(
491
491
log_close ();
492
492
}
493
493
494
- /* * Start a mini-transaction.
495
- @param sync true if it is a synchronous mini-transaction
496
- @param read_only true if read only mini-transaction */
497
- void
498
- mtr_t ::start(bool sync, bool read_only)
499
- {
500
- start (NULL , sync, read_only);
501
- }
502
-
503
494
/* * Start a mini-transaction.
504
495
@param sync true if it is a synchronous mini-transaction
505
496
@param read_only true if read only mini-transaction */
You can’t perform that action at this time.
0 commit comments