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
3e740c25
Commit
3e740c25
authored
Jul 09, 2013
by
Sergey Petrunya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
10.0-monty: trivial test result updates
parent
7a9eae58
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
57 additions
and
57 deletions
+57
-57
mysql-test/suite/handler/interface.result
mysql-test/suite/handler/interface.result
+1
-1
mysql-test/suite/optimizer_unfixed_bugs/r/bug41029.result
mysql-test/suite/optimizer_unfixed_bugs/r/bug41029.result
+1
-1
mysql-test/suite/optimizer_unfixed_bugs/r/bug41996.result
mysql-test/suite/optimizer_unfixed_bugs/r/bug41996.result
+1
-1
mysql-test/suite/perfschema/r/dml_handler.result
mysql-test/suite/perfschema/r/dml_handler.result
+52
-52
mysql-test/suite/sys_vars/r/slow_query_log_func.result
mysql-test/suite/sys_vars/r/slow_query_log_func.result
+1
-1
mysql-test/suite/sys_vars/r/sql_notes_func.result
mysql-test/suite/sys_vars/r/sql_notes_func.result
+1
-1
No files found.
mysql-test/suite/handler/interface.result
View file @
3e740c25
...
...
@@ -269,7 +269,7 @@ handler t1 open;
lock table t1 write;
alter table t1 engine=csv;
handler t1 read a next;
ERROR HY000:
Table storage engine for 't1'
doesn't have this option
ERROR HY000:
Storage engine CSV of the table `test`.`t1`
doesn't have this option
handler t1 close;
unlock tables;
drop table t1;
...
...
mysql-test/suite/optimizer_unfixed_bugs/r/bug41029.result
View file @
3e740c25
...
...
@@ -7,7 +7,7 @@ set autocommit=0;
use test;
drop table if exists t1;
Warnings:
Note 1051 Unknown table 't1'
Note 1051 Unknown table 't
est.t
1'
create table t1 (dummy int primary key, a int unique, b int) engine=innodb;
insert into t1 values(1,1,1),(3,3,3),(5,5,5);
commit;
...
...
mysql-test/suite/optimizer_unfixed_bugs/r/bug41996.result
View file @
3e740c25
set session debug_dbug="+d,optimizer_innodb_icp";
drop table if exists `t1`;
Warnings:
Note 1051 Unknown table 't1'
Note 1051 Unknown table 't
est.t
1'
create table `t1` (`c` bigint, key(`c`),`a` int)engine=innodb;
insert into `t1` values(2,2);
delete `t1` from `t1` `a`, `t1` where `a`.`a`=`t1`.`c` ;
...
...
mysql-test/suite/perfschema/r/dml_handler.result
View file @
3e740c25
This diff is collapsed.
Click to expand it.
mysql-test/suite/sys_vars/r/slow_query_log_func.result
View file @
3e740c25
...
...
@@ -81,7 +81,7 @@ DROP FUNCTION f_slow_current_time;
DROP TABLE t1;
DROP TABLE IF EXISTS t1;
Warnings:
Note 1051 Unknown table 't1'
Note 1051 Unknown table 't
est.t
1'
CREATE TABLE t1(c1 INT) ENGINE=MyISAM;
DROP PROCEDURE IF EXISTS p1;
CREATE PROCEDURE p1()
...
...
mysql-test/suite/sys_vars/r/sql_notes_func.result
View file @
3e740c25
...
...
@@ -13,7 +13,7 @@ SELECT @@warning_count;
0 Expected
DROP TABLE IF EXISTS t1;
Warnings:
Note 1051 Unknown table 't1'
Note 1051 Unknown table 't
est.t
1'
SELECT @@warning_count;
@@warning_count
1
...
...
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