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
ec257218
Commit
ec257218
authored
Mar 13, 2008
by
marko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
branches/zip: row_upd_index_replace_new_col_val(): Fix the function
parameters that were somehow wrong in r2363.
parent
5dfe4d50
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
row/row0upd.c
row/row0upd.c
+5
-3
No files found.
row/row0upd.c
View file @
ec257218
...
...
@@ -877,6 +877,8 @@ row_upd_index_replace_new_col_val(
const
dict_field_t
*
field
,
/* in: index field */
const
dict_col_t
*
col
,
/* in: field->col */
const
upd_field_t
*
uf
,
/* in: update field */
mem_heap_t
*
heap
,
/* in: memory heap for allocating
and copying the new value */
ulint
zip_size
)
/* in: compressed page
size of the table, or 0 */
{
...
...
@@ -976,7 +978,7 @@ row_upd_index_replace_new_col_vals_index_pos(
/* in: if TRUE, limit the replacement to
ordering fields of index; note that this
does not work for non-clustered indexes. */
mem_heap_t
*
heap
,
/* in: memory heap for allocating and
mem_heap_t
*
heap
)
/* in: memory heap for allocating and
copying the new values */
{
ulint
i
;
...
...
@@ -1005,7 +1007,7 @@ row_upd_index_replace_new_col_vals_index_pos(
if
(
uf
)
{
row_upd_index_replace_new_col_val
(
dtuple_get_nth_field
(
entry
,
i
),
field
,
col
,
uf
,
zip_size
);
field
,
col
,
uf
,
heap
,
zip_size
);
}
}
}
...
...
@@ -1050,7 +1052,7 @@ row_upd_index_replace_new_col_vals(
if
(
uf
)
{
row_upd_index_replace_new_col_val
(
dtuple_get_nth_field
(
entry
,
i
),
field
,
col
,
uf
);
field
,
col
,
uf
,
heap
,
zip_size
);
}
}
}
...
...
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