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
80f4c105
Commit
80f4c105
authored
Oct 24, 2006
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix spelling errors in test files
parent
ccc33b4e
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
33 deletions
+7
-33
mysql-test/r/mysqldump-max.result
mysql-test/r/mysqldump-max.result
+1
-18
mysql-test/r/rpl_trigger.result
mysql-test/r/rpl_trigger.result
+0
-2
mysql-test/r/type_newdecimal.result
mysql-test/r/type_newdecimal.result
+0
-2
mysql-test/t/mysqldump-max.test
mysql-test/t/mysqldump-max.test
+3
-8
mysql-test/t/rpl_trigger.test
mysql-test/t/rpl_trigger.test
+1
-1
mysql-test/t/type_newdecimal.test
mysql-test/t/type_newdecimal.test
+2
-2
No files found.
mysql-test/r/mysqldump-max.result
View file @
80f4c105
drop table if exists t1;
Warnings:
Note 1051 Unknown table 't1'
drop table if exists t2;
Warnings:
Note 1051 Unknown table 't2'
drop table if exists t3;
Warnings:
Note 1051 Unknown table 't3'
drop table if exists t4;
Warnings:
Note 1051 Unknown table 't4'
drop table if exists t5;
Warnings:
Note 1051 Unknown table 't5'
drop table if exists t6;
Warnings:
Note 1051 Unknown table 't6'
drop table if exists t1, t2, t3, t4, t5, t6;
create table t1 (id int(8), name varchar(32));
create table t2 (id int(8), name varchar(32)) ENGINE="MyISAM";
create table t3 (id int(8), name varchar(32)) ENGINE="MEMORY";
...
...
mysql-test/r/rpl_trigger.result
View file @
80f4c105
...
...
@@ -71,8 +71,6 @@ get_lock("bug12480",2)
1
create table t1 (a datetime,b datetime, c datetime);
drop function if exists bug12480;
Warnings:
Note 1305 FUNCTION bug12480 does not exist
create function bug12480() returns datetime
begin
set @a=get_lock("bug12480",2);
...
...
mysql-test/r/type_newdecimal.result
View file @
80f4c105
...
...
@@ -978,8 +978,6 @@ t1 CREATE TABLE `t1` (
) ENGINE=MyISAM DEFAULT CHARSET=latin1
drop table t1;
drop procedure if exists wg2;
Warnings:
Note 1305 PROCEDURE wg2 does not exist
create procedure wg2()
begin
declare v int default 1;
...
...
mysql-test/t/mysqldump-max.test
View file @
80f4c105
...
...
@@ -3,14 +3,9 @@
--
source
include
/
have_innodb
.
inc
--
source
include
/
have_archive
.
inc
--
disable
-
warnings
drop
table
if
exists
t1
;
drop
table
if
exists
t2
;
drop
table
if
exists
t3
;
drop
table
if
exists
t4
;
drop
table
if
exists
t5
;
drop
table
if
exists
t6
;
--
enable
-
warnings
--
disable_warnings
drop
table
if
exists
t1
,
t2
,
t3
,
t4
,
t5
,
t6
;
--
enable_warnings
create
table
t1
(
id
int
(
8
),
name
varchar
(
32
));
create
table
t2
(
id
int
(
8
),
name
varchar
(
32
))
ENGINE
=
"MyISAM"
;
...
...
mysql-test/t/rpl_trigger.test
View file @
80f4c105
...
...
@@ -62,7 +62,7 @@ select get_lock("bug12480",2);
connection
default
;
create
table
t1
(
a
datetime
,
b
datetime
,
c
datetime
);
--
ignor
e_warnings
--
disabl
e_warnings
drop
function
if
exists
bug12480
;
--
enable_warnings
...
...
mysql-test/t/type_newdecimal.test
View file @
80f4c105
...
...
@@ -1000,9 +1000,9 @@ drop table t1;
#
# Bug 12938 (arithmetic loop's zero)
#
--
disable
-
warnings
--
disable
_
warnings
drop
procedure
if
exists
wg2
;
--
enable
-
warnings
--
enable
_
warnings
delimiter
//;
create
procedure
wg2
()
begin
...
...
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