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
b7c57329
Commit
b7c57329
authored
Oct 22, 2004
by
ram@gw.mysql.r18.ru
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
A fix (bug #5999 Typo in code, wrong config variable naming).
parent
4c605cec
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
mysql-test/r/rpl_auto_increment.result
mysql-test/r/rpl_auto_increment.result
+1
-1
sql/set_var.cc
sql/set_var.cc
+1
-1
No files found.
mysql-test/r/rpl_auto_increment.result
View file @
b7c57329
...
...
@@ -39,7 +39,7 @@ drop table t1;
set @@session.auto_increment_increment=100, @@session.auto_increment_offset=10;
show variables like "%auto%";
Variable_name Value
auto_increme
m
t_increment 100
auto_increme
n
t_increment 100
auto_increment_offset 10
create table t1 (a int not null auto_increment, primary key (a)) engine=myisam;
insert into t1 values (NULL),(5),(NULL);
...
...
sql/set_var.cc
View file @
b7c57329
...
...
@@ -632,7 +632,7 @@ sys_var *sys_variables[]=
*/
struct
show_var_st
init_vars
[]
=
{
{
"auto_increme
m
t_increment"
,
(
char
*
)
&
sys_auto_increment_increment
,
SHOW_SYS
},
{
"auto_increme
n
t_increment"
,
(
char
*
)
&
sys_auto_increment_increment
,
SHOW_SYS
},
{
"auto_increment_offset"
,
(
char
*
)
&
sys_auto_increment_offset
,
SHOW_SYS
},
{
"back_log"
,
(
char
*
)
&
back_log
,
SHOW_LONG
},
{
"basedir"
,
mysql_home
,
SHOW_CHAR
},
...
...
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