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
3d75d36e
Commit
3d75d36e
authored
Sep 12, 2007
by
antony@pcg5ppc.xiphis.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changes for pushbuild test runs and VSC compile warnings
parent
421d2d2a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
2 deletions
+5
-2
mysql-test/suite/rpl/r/rpl_innodb_bug28430.result
mysql-test/suite/rpl/r/rpl_innodb_bug28430.result
+1
-1
mysql-test/suite/rpl/t/rpl_innodb_bug28430.test
mysql-test/suite/rpl/t/rpl_innodb_bug28430.test
+2
-0
mysql-test/suite/rpl/t/rpl_innodb_bug30888.test
mysql-test/suite/rpl/t/rpl_innodb_bug30888.test
+1
-0
storage/innobase/handler/ha_innodb.cc
storage/innobase/handler/ha_innodb.cc
+1
-1
No files found.
mysql-test/suite/rpl/r/rpl_innodb_bug28430.result
View file @
3d75d36e
...
...
@@ -118,7 +118,7 @@ show slave status;
Slave_IO_State Waiting for master to send event
Master_Host 127.0.0.1
Master_User root
Master_Port
12000
Master_Port
MASTER_PORT
Connect_Retry 1
Master_Log_File master-bin.000001
Read_Master_Log_Pos 945470
...
...
mysql-test/suite/rpl/t/rpl_innodb_bug28430.test
View file @
3d75d36e
--
source
include
/
have_innodb
.
inc
--
source
include
/
have_binlog_format_mixed_or_row
.
inc
--
source
include
/
master
-
slave
.
inc
# Set the default connection to 'master'
...
...
@@ -134,6 +135,7 @@ SELECT count(*) as "Master byrange" FROM test.byrange_tbl;
--
sync_slave_with_master
connection
slave
;
show
create
table
test
.
byrange_tbl
;
--
replace_column
4
MASTER_PORT
show
slave
status
;
SELECT
count
(
*
)
"Slave norm"
FROM
test
.
regular_tbl
;
SELECT
count
(
*
)
"Slave bykey"
FROM
test
.
bykey_tbl
;
...
...
mysql-test/suite/rpl/t/rpl_innodb_bug30888.test
View file @
3d75d36e
--
source
include
/
have_innodb
.
inc
--
source
include
/
have_binlog_format_mixed_or_row
.
inc
--
source
include
/
master
-
slave
.
inc
# Set the default connection to 'master'
...
...
storage/innobase/handler/ha_innodb.cc
View file @
3d75d36e
...
...
@@ -7314,7 +7314,7 @@ ha_innobase::get_auto_increment(
/* Called for the first time ? */
if
(
trx
->
n_autoinc_rows
==
0
)
{
trx
->
n_autoinc_rows
=
nb_desired_values
;
trx
->
n_autoinc_rows
=
(
ulint
)
nb_desired_values
;
/* It's possible for nb_desired_values to be 0:
e.g., INSERT INTO T1(C) SELECT C FROM T2; */
...
...
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