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
5a5672d6
Commit
5a5672d6
authored
Jan 06, 2008
by
hezx@mail.hezx.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some test case after push of BUG#32205
parent
f858fe10
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
4 deletions
+6
-4
mysql-test/r/binlog_start_comment.result
mysql-test/r/binlog_start_comment.result
+1
-0
mysql-test/r/blackhole.result
mysql-test/r/blackhole.result
+2
-2
mysql-test/r/case.result
mysql-test/r/case.result
+1
-1
mysql-test/t/blackhole.test
mysql-test/t/blackhole.test
+1
-0
mysql-test/t/case.test
mysql-test/t/case.test
+1
-1
No files found.
mysql-test/r/binlog_start_comment.result
View file @
5a5672d6
...
...
@@ -12,3 +12,4 @@ flush logs;
select * from t2;
word
Ada
drop table t1,t2;
mysql-test/r/blackhole.result
View file @
5a5672d6
...
...
@@ -115,8 +115,8 @@ master-bin.000001 # Query 1 # use `test`; insert into t1 values(1)
master-bin.000001 # Query 1 # use `test`; insert ignore into t1 values(1)
master-bin.000001 # Query 1 # use `test`; replace into t1 values(100)
master-bin.000001 # Query 1 # use `test`; create table t2 (a varchar(200)) engine=blackhole
master-bin.000001 # Begin_load_query 1 # ;file_id=
1
;block_len=581
master-bin.000001 # Execute_load_query 1 # use `test`; load data infile '../std_data_ln/words.dat' into table t2 ;file_id=
1
master-bin.000001 # Begin_load_query 1 # ;file_id=
#
;block_len=581
master-bin.000001 # Execute_load_query 1 # use `test`; load data infile '../std_data_ln/words.dat' into table t2 ;file_id=
#
master-bin.000001 # Query 1 # use `test`; alter table t1 add b int
master-bin.000001 # Query 1 # use `test`; alter table t1 drop b
master-bin.000001 # Query 1 # use `test`; create table t3 like t1
...
...
mysql-test/r/case.result
View file @
5a5672d6
drop table if exists t1;
drop table if exists t1
, t2
;
select CASE "b" when "a" then 1 when "b" then 2 END;
CASE "b" when "a" then 1 when "b" then 2 END
2
...
...
mysql-test/t/blackhole.test
View file @
5a5672d6
...
...
@@ -128,6 +128,7 @@ select * from t3;
let
$VERSION
=
`select version()`
;
--
replace_result
$VERSION
VERSION
--
replace_column
2
# 5 #
--
replace_regex
/
file_id
=
[
0
-
9
]
+/
file_id
=
#/
show
binlog
events
;
drop
table
t1
,
t2
,
t3
;
...
...
mysql-test/t/case.test
View file @
5a5672d6
...
...
@@ -3,7 +3,7 @@
#
--
disable_warnings
drop
table
if
exists
t1
;
drop
table
if
exists
t1
,
t2
;
--
enable_warnings
select
CASE
"b"
when
"a"
then
1
when
"b"
then
2
END
;
...
...
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