1
0
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:
msvensson@neptunus.(none)
2006-09-22 09:00:23 +02:00
parent ec2e007a32
commit 015d8409a7

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