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
201ce48d
Commit
201ce48d
authored
Mar 26, 2008
by
msvensson@pilot.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
After merge fixes
parent
bc4874b7
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
10 additions
and
11 deletions
+10
-11
mysql-test/include/commit.inc
mysql-test/include/commit.inc
+2
-2
mysql-test/lib/mtr_report.pm
mysql-test/lib/mtr_report.pm
+5
-2
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+0
-2
mysql-test/r/commit_1innodb.result
mysql-test/r/commit_1innodb.result
+2
-2
mysql-test/suite/binlog/r/binlog_multi_engine.result
mysql-test/suite/binlog/r/binlog_multi_engine.result
+1
-1
mysql-test/suite/binlog/r/binlog_unsafe.result
mysql-test/suite/binlog/r/binlog_unsafe.result
+0
-1
mysql-test/suite/binlog/t/binlog_unsafe.test
mysql-test/suite/binlog/t/binlog_unsafe.test
+0
-1
No files found.
mysql-test/include/commit.inc
View file @
201ce48d
...
...
@@ -267,7 +267,7 @@ select * from t2;
insert
into
t2
(
a
)
values
(
1026
);
--
replace_result
$MYSQLTEST_VARDIR
..
--
error
ER_DUP_ENTRY
eval
load
data
infile
"../
std_data_ln
/words.dat"
into
table
t1
(
a
)
set
a
:=
f2
(
26
);
eval
load
data
infile
"../
../std_data
/words.dat"
into
table
t1
(
a
)
set
a
:=
f2
(
26
);
select
*
from
t2
;
rollback
;
...
...
@@ -740,6 +740,6 @@ call p_verify_status_increment(0, 0, 0, 0);
--
echo
#
--
echo
# Cleanup
--
echo
#
drop
table
t1
;
drop
table
t1
,
t2
,
t3
;
drop
procedure
p_verify_status_increment
;
drop
function
f1
;
mysql-test/lib/mtr_report.pm
View file @
201ce48d
...
...
@@ -455,11 +455,14 @@ sub mtr_report_stats ($) {
# that can be copy pasted to rerun only failing tests
print
"
Failing test(s):
";
my
%
seen
=
();
foreach
my
$tinfo
(
@$tests
)
{
if
(
$tinfo
->
{'
result
'}
eq
'
MTR_RES_FAILED
'
)
my
$tname
=
$tinfo
->
{'
name
'};
if
(
$tinfo
->
{'
result
'}
eq
'
MTR_RES_FAILED
'
and
!
$seen
{
$tname
})
{
print
"
$tinfo
->{'name'}
";
print
"
$tname
";
$seen
{
$tname
}
=
1
;
}
}
print
"
\n\n
";
...
...
mysql-test/mysql-test-run.pl
View file @
201ce48d
...
...
@@ -221,8 +221,6 @@ sub main {
gcov_prepare
();
}
mtr_report
("
Collecting tests...
");
if
(
!
$opt_suites
)
{
$opt_suites
=
$DEFAULT_SUITES
;
...
...
mysql-test/r/commit_1innodb.result
View file @
201ce48d
...
...
@@ -263,7 +263,7 @@ rollback;
select * from t2;
a
insert into t2 (a) values (1026);
load data infile "../
std_data_ln
/words.dat" into table t1 (a) set a:=f2(26);
load data infile "../
../std_data
/words.dat" into table t1 (a) set a:=f2(26);
ERROR 23000: Duplicate entry '26' for key 'a'
select * from t2;
a
...
...
@@ -879,6 +879,6 @@ SUCCESS
#
# Cleanup
#
drop table t1;
drop table t1
, t2, t3
;
drop procedure p_verify_status_increment;
drop function f1;
mysql-test/suite/binlog/r/binlog_multi_engine.result
View file @
201ce48d
...
...
@@ -37,7 +37,7 @@ mysqld-bin.000001 # Query # # use `test`; TRUNCATE t1b
mysqld-bin.000001 # Query # # use `test`; TRUNCATE t1n
RESET MASTER;
SET SESSION BINLOG_FORMAT=MIXED;
INSERT
s
INTO t1b VALUES (1,1), (1,2), (2,1), (2,2);
INSERT INTO t1b VALUES (1,1), (1,2), (2,1), (2,2);
INSERT INTO t1m VALUES (1,1), (1,2), (2,1), (2,2);
INSERT INTO t1n VALUES (1,1), (1,2), (2,1), (2,2);
UPDATE t1m, t1b SET m = 2, b = 3 WHERE n = c;
...
...
mysql-test/suite/binlog/r/binlog_unsafe.result
View file @
201ce48d
...
...
@@ -192,4 +192,3 @@ DROP PROCEDURE proc4;
DROP FUNCTION func5;
DROP PREPARE prep6;
DROP TABLE t1, t2, t3, trigger_table, trigger_table2;
DROP VIEW v1;
mysql-test/suite/binlog/t/binlog_unsafe.test
View file @
201ce48d
...
...
@@ -236,4 +236,3 @@ DROP PROCEDURE proc4;
DROP
FUNCTION
func5
;
DROP
PREPARE
prep6
;
DROP
TABLE
t1
,
t2
,
t3
,
trigger_table
,
trigger_table2
;
DROP
VIEW
v1
;
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