mirror of
https://github.com/MariaDB/server.git
synced 2025-09-02 09:41:40 +03:00
Fix windows and aix compile problem
- Variables must be declared first in each block
This commit is contained in:
@@ -131,8 +131,9 @@ row_build_index_entry(
|
||||
}
|
||||
|
||||
for (i = 0; i < entry_len; i++) {
|
||||
const dict_col_t* col;
|
||||
ind_field = dict_index_get_nth_field(index, i);
|
||||
const dict_col_t* col = ind_field->col;
|
||||
col = ind_field->col;
|
||||
|
||||
dfield = dtuple_get_nth_field(entry, i);
|
||||
|
||||
|
Reference in New Issue
Block a user