Skip to content

Commit ac5cbaf

Browse files
committed
Aria - correct type
Aria transaction ids are uint16 rather than uint. Change the type to be more accurate.
1 parent 35d477d commit ac5cbaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

storage/maria/ma_loghandler.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6392,7 +6392,7 @@ my_bool translog_write_record(LSN *lsn,
63926392
struct st_translog_parts parts;
63936393
LEX_CUSTRING *part;
63946394
int rc;
6395-
uint short_trid= trn->short_id;
6395+
SHORT_TRANSACTION_ID short_trid= trn->short_id;
63966396
DBUG_ENTER("translog_write_record");
63976397
DBUG_PRINT("enter", ("type: %u (%s) ShortTrID: %u rec_len: %lu",
63986398
(uint) type, log_record_type_descriptor[type].name,

0 commit comments

Comments
 (0)