mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 02:05:57 +01:00
Fixed c++11 narrowing error in table.cc
This commit is contained in:
parent
e99ed820d7
commit
7060b0320d
1 changed files with 1 additions and 1 deletions
|
@ -8813,7 +8813,7 @@ bool TR_table::update(ulonglong start_id, ulonglong end_id)
|
|||
|
||||
store(FLD_BEGIN_TS, thd->transaction_time());
|
||||
thd->set_time();
|
||||
timeval end_time= {thd->query_start(), long(thd->query_start_sec_part())};
|
||||
timeval end_time= {thd->query_start(), int(thd->query_start_sec_part())};
|
||||
store(FLD_TRX_ID, start_id);
|
||||
store(FLD_COMMIT_ID, end_id);
|
||||
store(FLD_COMMIT_TS, end_time);
|
||||
|
|
Loading…
Add table
Reference in a new issue