1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Fix windows and aix compile problem

- Variables must be declared first in each block


storage/innobase/row/row0row.c:
  Variables must be declared first in each block
This commit is contained in:
unknown
2006-09-22 09:00:23 +02:00
parent 282362675e
commit 88ec5cc764

View File

@@ -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);