Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
015d8409
Commit
015d8409
authored
Sep 22, 2006
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix windows and aix compile problem
- Variables must be declared first in each block
parent
ec2e007a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
storage/innobase/row/row0row.c
storage/innobase/row/row0row.c
+2
-1
No files found.
storage/innobase/row/row0row.c
View file @
015d8409
...
...
@@ -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
);
co
nst
dict_col_t
*
co
l
=
ind_field
->
col
;
col
=
ind_field
->
col
;
dfield
=
dtuple_get_nth_field
(
entry
,
i
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment