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
299339d4
Commit
299339d4
authored
Feb 01, 2009
by
Georgi Kodinov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed internal test check warnings in 5.1-bugteam.
parent
c0ae6f6d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
5 deletions
+7
-5
mysql-test/include/mtr_check.sql
mysql-test/include/mtr_check.sql
+1
-1
mysql-test/r/init_file.result
mysql-test/r/init_file.result
+0
-2
mysql-test/suite/rpl/t/rpl_trigger.test
mysql-test/suite/rpl/t/rpl_trigger.test
+2
-0
mysql-test/t/init_file.test
mysql-test/t/init_file.test
+4
-2
No files found.
mysql-test/include/mtr_check.sql
View file @
299339d4
...
...
@@ -12,7 +12,7 @@ BEGIN
-- Dump all global variables except those
-- that are supposed to change
SELECT
*
FROM
INFORMATION_SCHEMA
.
GLOBAL_VARIABLES
WHERE
variable_name
!=
'timestamp'
;
WHERE
variable_name
!=
'timestamp'
ORDER
BY
VARIABLE_NAME
;
-- Dump all databases, there should be none
-- except those that was created during bootstrap
...
...
mysql-test/r/init_file.result
View file @
299339d4
...
...
@@ -4,7 +4,6 @@ SELECT * INTO @Y FROM init_file.startup limit 1,1;
SELECT YEAR(@X)-YEAR(@Y);
YEAR(@X)-YEAR(@Y)
0
DROP DATABASE init_file;
ok
end of 4.1 tests
select * from t1;
...
...
@@ -20,4 +19,3 @@ y
3
11
13
drop table t1, t2;
mysql-test/suite/rpl/t/rpl_trigger.test
View file @
299339d4
...
...
@@ -265,6 +265,8 @@ while ($rnd)
connection
master
;
eval
drop
table
t1
$rnd
;
sync_slave_with_master
;
connection
master
;
dec
$rnd
;
}
...
...
mysql-test/t/init_file.test
View file @
299339d4
...
...
@@ -13,7 +13,8 @@ INSERT INTO init_file.startup VALUES ( NOW() );
SELECT
*
INTO
@
X
FROM
init_file
.
startup
limit
0
,
1
;
SELECT
*
INTO
@
Y
FROM
init_file
.
startup
limit
1
,
1
;
SELECT
YEAR
(
@
X
)
-
YEAR
(
@
Y
);
DROP
DATABASE
init_file
;
# Enable this DROP DATABASE only after resolving bug #42507
# DROP DATABASE init_file;
--
echo
ok
--
echo
end
of
4.1
tests
...
...
@@ -26,4 +27,5 @@ select * from t1;
# Expected:
# 30, 3, 11, 13
select
*
from
t2
;
drop
table
t1
,
t2
;
# Enable this DROP TABLE only after resolving bug #42507
#drop table t1, 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