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
d687f1b4
Commit
d687f1b4
authored
Dec 19, 2007
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #33375 all_set corrupted on table object
- make sure to reset the read and write sets
parent
0dd78556
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
8 deletions
+14
-8
sql/handler.cc
sql/handler.cc
+2
-0
sql/log_event.cc
sql/log_event.cc
+12
-8
No files found.
sql/handler.cc
View file @
d687f1b4
...
@@ -3710,6 +3710,8 @@ int handler::ha_reset()
...
@@ -3710,6 +3710,8 @@ int handler::ha_reset()
DBUG_ASSERT
(
inited
==
NONE
);
DBUG_ASSERT
(
inited
==
NONE
);
/* Free cache used by filesort */
/* Free cache used by filesort */
free_io_cache
(
table
);
free_io_cache
(
table
);
/* reset the bitmaps to point to defaults */
table
->
default_column_bitmaps
();
DBUG_RETURN
(
reset
());
DBUG_RETURN
(
reset
());
}
}
...
...
sql/log_event.cc
View file @
d687f1b4
...
@@ -7837,7 +7837,7 @@ int Rows_log_event::find_row(const Relay_log_info *rli)
...
@@ -7837,7 +7837,7 @@ int Rows_log_event::find_row(const Relay_log_info *rli)
{
{
DBUG_PRINT
(
"info"
,(
"ha_index_init returns error %d"
,
error
));
DBUG_PRINT
(
"info"
,(
"ha_index_init returns error %d"
,
error
));
table
->
file
->
print_error
(
error
,
MYF
(
0
));
table
->
file
->
print_error
(
error
,
MYF
(
0
));
DBUG_RETURN
(
error
)
;
goto
err
;
}
}
/* Fill key data for the row */
/* Fill key data for the row */
...
@@ -7870,7 +7870,7 @@ int Rows_log_event::find_row(const Relay_log_info *rli)
...
@@ -7870,7 +7870,7 @@ int Rows_log_event::find_row(const Relay_log_info *rli)
DBUG_PRINT
(
"info"
,(
"no record matching the key found in the table"
));
DBUG_PRINT
(
"info"
,(
"no record matching the key found in the table"
));
table
->
file
->
print_error
(
error
,
MYF
(
0
));
table
->
file
->
print_error
(
error
,
MYF
(
0
));
table
->
file
->
ha_index_end
();
table
->
file
->
ha_index_end
();
DBUG_RETURN
(
error
)
;
goto
err
;
}
}
/*
/*
...
@@ -7898,7 +7898,7 @@ int Rows_log_event::find_row(const Relay_log_info *rli)
...
@@ -7898,7 +7898,7 @@ int Rows_log_event::find_row(const Relay_log_info *rli)
if
(
table
->
key_info
->
flags
&
HA_NOSAME
)
if
(
table
->
key_info
->
flags
&
HA_NOSAME
)
{
{
table
->
file
->
ha_index_end
();
table
->
file
->
ha_index_end
();
DBUG_RETURN
(
0
)
;
goto
ok
;
}
}
/*
/*
...
@@ -7930,7 +7930,7 @@ int Rows_log_event::find_row(const Relay_log_info *rli)
...
@@ -7930,7 +7930,7 @@ int Rows_log_event::find_row(const Relay_log_info *rli)
DBUG_PRINT
(
"info"
,(
"no record matching the given row found"
));
DBUG_PRINT
(
"info"
,(
"no record matching the given row found"
));
table
->
file
->
print_error
(
error
,
MYF
(
0
));
table
->
file
->
print_error
(
error
,
MYF
(
0
));
table
->
file
->
ha_index_end
();
table
->
file
->
ha_index_end
();
DBUG_RETURN
(
error
)
;
goto
err
;
}
}
}
}
...
@@ -7951,7 +7951,7 @@ int Rows_log_event::find_row(const Relay_log_info *rli)
...
@@ -7951,7 +7951,7 @@ int Rows_log_event::find_row(const Relay_log_info *rli)
DBUG_PRINT
(
"info"
,(
"error initializing table scan"
DBUG_PRINT
(
"info"
,(
"error initializing table scan"
" (ha_rnd_init returns %d)"
,
error
));
" (ha_rnd_init returns %d)"
,
error
));
table
->
file
->
print_error
(
error
,
MYF
(
0
));
table
->
file
->
print_error
(
error
,
MYF
(
0
));
DBUG_RETURN
(
error
)
;
goto
err
;
}
}
/* Continue until we find the right record or have made a full loop */
/* Continue until we find the right record or have made a full loop */
...
@@ -7975,7 +7975,7 @@ int Rows_log_event::find_row(const Relay_log_info *rli)
...
@@ -7975,7 +7975,7 @@ int Rows_log_event::find_row(const Relay_log_info *rli)
" (rnd_next returns %d)"
,
error
));
" (rnd_next returns %d)"
,
error
));
table
->
file
->
print_error
(
error
,
MYF
(
0
));
table
->
file
->
print_error
(
error
,
MYF
(
0
));
table
->
file
->
ha_rnd_end
();
table
->
file
->
ha_rnd_end
();
DBUG_RETURN
(
error
)
;
goto
err
;
}
}
}
}
while
(
restart_count
<
2
&&
record_compare
(
table
));
while
(
restart_count
<
2
&&
record_compare
(
table
));
...
@@ -7995,10 +7995,14 @@ int Rows_log_event::find_row(const Relay_log_info *rli)
...
@@ -7995,10 +7995,14 @@ int Rows_log_event::find_row(const Relay_log_info *rli)
table
->
file
->
ha_rnd_end
();
table
->
file
->
ha_rnd_end
();
DBUG_ASSERT
(
error
==
HA_ERR_END_OF_FILE
||
error
==
HA_ERR_RECORD_DELETED
||
error
==
0
);
DBUG_ASSERT
(
error
==
HA_ERR_END_OF_FILE
||
error
==
HA_ERR_RECORD_DELETED
||
error
==
0
);
DBUG_RETURN
(
error
)
;
goto
err
;
}
}
ok:
table
->
default_column_bitmaps
();
DBUG_RETURN
(
0
);
DBUG_RETURN
(
0
);
err:
table
->
default_column_bitmaps
();
DBUG_RETURN
(
error
);
}
}
#endif
#endif
...
...
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