Commit 1043faa9 authored by unknown's avatar unknown

Merge lthalmann@bk-internal.mysql.com:/home/bk/mysql-4.1

into mysql.com:/home/bkroot/mysql-4.1

parents e741023f cbd92676
...@@ -342,13 +342,16 @@ dict_index_rec_get_sys_col( ...@@ -342,13 +342,16 @@ dict_index_rec_get_sys_col(
ut_ad(len == 7); ut_ad(len == 7);
return(trx_read_roll_ptr(field)); return(trx_read_roll_ptr(field));
} else if ((type == DATA_ROW_ID) || (type == DATA_MIX_ID)) { } else if (type == DATA_TRX_ID) {
return(trx_read_trx_id(field));
} else if (type == DATA_MIX_ID) {
return(mach_dulint_read_compressed(field)); return(mach_dulint_read_compressed(field));
} else { } else {
ut_ad(type == DATA_TRX_ID); ut_a(type == DATA_ROW_ID);
return(trx_read_trx_id(field)); return(mach_read_from_6(field));
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment