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
179c17ad
Commit
179c17ad
authored
Oct 19, 2006
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge neptunus.(none):/home/msvensson/mysql/bug22436/my50-bug22436
into neptunus.(none):/home/msvensson/mysql/mysql-5.0-maint
parents
9a50d74f
485772e3
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
20 additions
and
14 deletions
+20
-14
mysql-test/r/create.result
mysql-test/r/create.result
+0
-6
mysql-test/r/innodb_mysql.result
mysql-test/r/innodb_mysql.result
+6
-0
mysql-test/t/create.test
mysql-test/t/create.test
+0
-8
mysql-test/t/innodb_mysql.test
mysql-test/t/innodb_mysql.test
+8
-0
mysql-test/t/lock_multi.test
mysql-test/t/lock_multi.test
+3
-0
mysql-test/t/sp.test
mysql-test/t/sp.test
+3
-0
No files found.
mysql-test/r/create.result
View file @
179c17ad
...
@@ -767,11 +767,5 @@ t1 CREATE TABLE `t1` (
...
@@ -767,11 +767,5 @@ t1 CREATE TABLE `t1` (
`i` int(11) default NULL
`i` int(11) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 MAX_ROWS=4294967295
) ENGINE=MyISAM DEFAULT CHARSET=latin1 MAX_ROWS=4294967295
drop table t1;
drop table t1;
create table t1(f1 varchar(800) binary not null, key(f1)) engine = innodb
character set utf8 collate utf8_general_ci;
Warnings:
Warning 1071 Specified key was too long; max key length is 765 bytes
insert into t1 values('aaa');
drop table t1;
create table t1 (upgrade int);
create table t1 (upgrade int);
drop table t1;
drop table t1;
mysql-test/r/innodb_mysql.result
View file @
179c17ad
...
@@ -347,3 +347,9 @@ id select_type table type possible_keys key key_len ref rows Extra
...
@@ -347,3 +347,9 @@ id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t2 index NULL fkey 5 NULL 5 Using index
1 SIMPLE t2 index NULL fkey 5 NULL 5 Using index
1 SIMPLE t1 eq_ref PRIMARY PRIMARY 4 test.t2.fkey 1 Using where
1 SIMPLE t1 eq_ref PRIMARY PRIMARY 4 test.t2.fkey 1 Using where
DROP TABLE t1,t2;
DROP TABLE t1,t2;
create table t1(f1 varchar(800) binary not null, key(f1)) engine = innodb
character set utf8 collate utf8_general_ci;
Warnings:
Warning 1071 Specified key was too long; max key length is 765 bytes
insert into t1 values('aaa');
drop table t1;
mysql-test/t/create.test
View file @
179c17ad
...
@@ -666,14 +666,6 @@ alter table t1 max_rows=100000000000;
...
@@ -666,14 +666,6 @@ alter table t1 max_rows=100000000000;
show
create
table
t1
;
show
create
table
t1
;
drop
table
t1
;
drop
table
t1
;
#
# Bug#17530: Incorrect key truncation on table creation caused server crash.
#
create
table
t1
(
f1
varchar
(
800
)
binary
not
null
,
key
(
f1
))
engine
=
innodb
character
set
utf8
collate
utf8_general_ci
;
insert
into
t1
values
(
'aaa'
);
drop
table
t1
;
#
#
# Bug#21772: can not name a column 'upgrade' when create a table
# Bug#21772: can not name a column 'upgrade' when create a table
#
#
...
...
mysql-test/t/innodb_mysql.test
View file @
179c17ad
...
@@ -318,3 +318,11 @@ SELECT COUNT(*) FROM t2 LEFT JOIN t1 ON t2.fkey = t1.id
...
@@ -318,3 +318,11 @@ SELECT COUNT(*) FROM t2 LEFT JOIN t1 ON t2.fkey = t1.id
WHERE
t1
.
name
LIKE
'A%'
OR
FALSE
;
WHERE
t1
.
name
LIKE
'A%'
OR
FALSE
;
DROP
TABLE
t1
,
t2
;
DROP
TABLE
t1
,
t2
;
#
# Bug#17530: Incorrect key truncation on table creation caused server crash.
#
create
table
t1
(
f1
varchar
(
800
)
binary
not
null
,
key
(
f1
))
engine
=
innodb
character
set
utf8
collate
utf8_general_ci
;
insert
into
t1
values
(
'aaa'
);
drop
table
t1
;
mysql-test/t/lock_multi.test
View file @
179c17ad
...
@@ -225,7 +225,10 @@ DROP TABLE t1;
...
@@ -225,7 +225,10 @@ DROP TABLE t1;
# Bug #17264: MySQL Server freeze
# Bug #17264: MySQL Server freeze
#
#
connection
locker
;
connection
locker
;
# Disable warnings to allow test to run also without InnoDB
--
disable_warnings
create
table
t1
(
f1
int
(
12
)
unsigned
not
null
auto_increment
,
primary
key
(
f1
))
engine
=
innodb
;
create
table
t1
(
f1
int
(
12
)
unsigned
not
null
auto_increment
,
primary
key
(
f1
))
engine
=
innodb
;
--
enable_warnings
lock
tables
t1
write
;
lock
tables
t1
write
;
connection
writer
;
connection
writer
;
--
sleep
2
--
sleep
2
...
...
mysql-test/t/sp.test
View file @
179c17ad
...
@@ -5630,7 +5630,10 @@ drop procedure bug16887|
...
@@ -5630,7 +5630,10 @@ drop procedure bug16887|
# Bug#13575 SP funcs in select with distinct/group and order by can
# Bug#13575 SP funcs in select with distinct/group and order by can
# produce bad data
# produce bad data
#
#
# Disable warnings to allow test to run also without InnoDB
--
disable_warnings
create
table
t3
(
f1
int
,
f2
varchar
(
3
),
primary
key
(
f1
))
engine
=
innodb
|
create
table
t3
(
f1
int
,
f2
varchar
(
3
),
primary
key
(
f1
))
engine
=
innodb
|
--
enable_warnings
insert
into
t3
values
(
1
,
'aaa'
),(
2
,
'bbb'
),(
3
,
'ccc'
)
|
insert
into
t3
values
(
1
,
'aaa'
),(
2
,
'bbb'
),(
3
,
'ccc'
)
|
CREATE
FUNCTION
bug13575
(
p1
integer
)
CREATE
FUNCTION
bug13575
(
p1
integer
)
returns
varchar
(
3
)
returns
varchar
(
3
)
...
...
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