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
00433b1b
Commit
00433b1b
authored
Oct 05, 2012
by
Michael Widenius
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge with 5.5
parents
be4cea7e
ea6a4eef
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
3 deletions
+6
-3
sql/handler.cc
sql/handler.cc
+2
-1
sql/item_subselect.cc
sql/item_subselect.cc
+1
-1
storage/innobase/handler/ha_innodb.cc
storage/innobase/handler/ha_innodb.cc
+1
-0
storage/xtradb/handler/ha_innodb.cc
storage/xtradb/handler/ha_innodb.cc
+2
-1
No files found.
sql/handler.cc
View file @
00433b1b
...
@@ -2671,7 +2671,8 @@ int handler::update_auto_increment()
...
@@ -2671,7 +2671,8 @@ int handler::update_auto_increment()
if
(
unlikely
(
nr
==
ULONGLONG_MAX
))
if
(
unlikely
(
nr
==
ULONGLONG_MAX
))
DBUG_RETURN
(
HA_ERR_AUTOINC_ERANGE
);
DBUG_RETURN
(
HA_ERR_AUTOINC_ERANGE
);
DBUG_PRINT
(
"info"
,(
"auto_increment: %lu"
,
(
ulong
)
nr
));
DBUG_PRINT
(
"info"
,(
"auto_increment: %llu nb_reserved_values: %llu"
,
nr
,
nb_reserved_values
));
/* Store field without warning (Warning will be printed by insert) */
/* Store field without warning (Warning will be printed by insert) */
save_count_cuted_fields
=
thd
->
count_cuted_fields
;
save_count_cuted_fields
=
thd
->
count_cuted_fields
;
...
...
sql/item_subselect.cc
View file @
00433b1b
...
@@ -220,7 +220,7 @@ bool Item_subselect::fix_fields(THD *thd_param, Item **ref)
...
@@ -220,7 +220,7 @@ bool Item_subselect::fix_fields(THD *thd_param, Item **ref)
uint8
uncacheable
;
uint8
uncacheable
;
bool
res
;
bool
res
;
status_var_increment
(
thd
->
status_var
.
feature_subquery
);
status_var_increment
(
thd
_param
->
status_var
.
feature_subquery
);
DBUG_ASSERT
(
fixed
==
0
);
DBUG_ASSERT
(
fixed
==
0
);
engine
->
set_thd
((
thd
=
thd_param
));
engine
->
set_thd
((
thd
=
thd_param
));
...
...
storage/innobase/handler/ha_innodb.cc
View file @
00433b1b
...
@@ -10299,6 +10299,7 @@ ha_innobase::get_auto_increment(
...
@@ -10299,6 +10299,7 @@ ha_innobase::get_auto_increment(
take care of this */
take care of this */
prebuilt
->
autoinc_last_value
=
0
;
prebuilt
->
autoinc_last_value
=
0
;
dict_table_autoinc_unlock
(
prebuilt
->
table
);
dict_table_autoinc_unlock
(
prebuilt
->
table
);
*
nb_reserved_values
=
0
;
return
;
return
;
}
}
*
nb_reserved_values
=
trx
->
n_autoinc_rows
;
*
nb_reserved_values
=
trx
->
n_autoinc_rows
;
...
...
storage/xtradb/handler/ha_innodb.cc
View file @
00433b1b
...
@@ -11249,6 +11249,7 @@ ha_innobase::get_auto_increment(
...
@@ -11249,6 +11249,7 @@ ha_innobase::get_auto_increment(
take care of this */
take care of this */
prebuilt
->
autoinc_last_value
=
0
;
prebuilt
->
autoinc_last_value
=
0
;
dict_table_autoinc_unlock
(
prebuilt
->
table
);
dict_table_autoinc_unlock
(
prebuilt
->
table
);
*
nb_reserved_values
=
0
;
return
;
return
;
}
}
*
nb_reserved_values
=
trx
->
n_autoinc_rows
;
*
nb_reserved_values
=
trx
->
n_autoinc_rows
;
...
@@ -13043,7 +13044,7 @@ static MYSQL_SYSVAR_ENUM(corrupt_table_action, srv_pass_corrupt_table,
...
@@ -13043,7 +13044,7 @@ static MYSQL_SYSVAR_ENUM(corrupt_table_action, srv_pass_corrupt_table,
"Warn corruptions of user tables as 'corrupt table' instead of not crashing itself, "
"Warn corruptions of user tables as 'corrupt table' instead of not crashing itself, "
"when used with file_per_table. "
"when used with file_per_table. "
"All file io for the datafile after detected as corrupt are disabled, "
"All file io for the datafile after detected as corrupt are disabled, "
"except for the deletion."
,
"except for the deletion.
Possible options are 'assert', 'warn' & 'salvage'
"
,
NULL
,
NULL
,
0
,
&
corrupt_table_action_typelib
);
NULL
,
NULL
,
0
,
&
corrupt_table_action_typelib
);
static
MYSQL_SYSVAR_ULINT
(
lazy_drop_table
,
srv_lazy_drop_table
,
static
MYSQL_SYSVAR_ULINT
(
lazy_drop_table
,
srv_lazy_drop_table
,
...
...
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