Skip to content

Commit e309e02

Browse files
MDEV-30655 IMPORT TABLESPACE fails with column count or index count mismatch
update_vcol_pos(): pass table id as table_id_t instead of ulint.
1 parent e66928a commit e309e02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

storage/innobase/row/row0import.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4521,7 +4521,7 @@ static void row_import_autoinc(dict_table_t *table, row_prebuilt_t *prebuilt,
45214521
@param new_pos position value
45224522
@param trx transaction
45234523
@return DB_SUCCESS or error code */
4524-
dberr_t update_vcol_pos(ulint table_id, ulint new_pos, trx_t *trx)
4524+
dberr_t update_vcol_pos(table_id_t table_id, ulint new_pos, trx_t *trx)
45254525
{
45264526
pars_info_t *info= pars_info_create();
45274527
pars_info_add_ull_literal(info, "id", table_id);

0 commit comments

Comments
 (0)