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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
75a662fb
Commit
75a662fb
authored
Dec 12, 2003
by
heikki@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
row0upd.h, row0upd.c:
Remove wrong debug assertion and comment
parent
d3d9b727
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
6 deletions
+4
-6
innobase/include/row0upd.h
innobase/include/row0upd.h
+2
-2
innobase/row/row0upd.c
innobase/row/row0upd.c
+2
-4
No files found.
innobase/include/row0upd.h
View file @
75a662fb
...
...
@@ -123,8 +123,8 @@ row_upd_changes_field_size_or_external(
/* out: TRUE if the update changes the size of
some field in index or the field is external
in rec or update */
rec_t
*
rec
,
/* in: record in
clustered
index */
dict_index_t
*
index
,
/* in:
clustered
index */
rec_t
*
rec
,
/* in: record in index */
dict_index_t
*
index
,
/* in: index */
upd_t
*
update
);
/* in: update vector */
/***************************************************************
Replaces the new column values stored in the update vector to the record
...
...
innobase/row/row0upd.c
View file @
75a662fb
...
...
@@ -361,8 +361,8 @@ row_upd_changes_field_size_or_external(
/* out: TRUE if the update changes the size of
some field in index or the field is external
in rec or update */
rec_t
*
rec
,
/* in: record in
clustered
index */
dict_index_t
*
index
,
/* in:
clustered
index */
rec_t
*
rec
,
/* in: record in index */
dict_index_t
*
index
,
/* in: index */
upd_t
*
update
)
/* in: update vector */
{
upd_field_t
*
upd_field
;
...
...
@@ -372,8 +372,6 @@ row_upd_changes_field_size_or_external(
ulint
n_fields
;
ulint
i
;
ut_ad
(
index
->
type
&
DICT_CLUSTERED
);
n_fields
=
upd_get_n_fields
(
update
);
for
(
i
=
0
;
i
<
n_fields
;
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