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
b2df3228
Commit
b2df3228
authored
May 19, 2011
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql-5.1-security to mysql-5.5-security.
parents
43afaed6
dd7e8529
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
110 additions
and
4 deletions
+110
-4
mysql-test/suite/innodb/r/innodb-index.result
mysql-test/suite/innodb/r/innodb-index.result
+47
-0
mysql-test/suite/innodb/t/innodb-index.test
mysql-test/suite/innodb/t/innodb-index.test
+63
-2
storage/innobase/row/row0row.c
storage/innobase/row/row0row.c
+0
-2
No files found.
mysql-test/suite/innodb/r/innodb-index.result
View file @
b2df3228
set global innodb_file_per_table=on;
set global innodb_file_format='Barracuda';
CREATE TABLE t1_purge (
A INT,
B BLOB, C BLOB, D BLOB, E BLOB,
F BLOB, G BLOB, H BLOB,
PRIMARY KEY (B(767), C(767), D(767), E(767), A),
INDEX (A)
) ENGINE=InnoDB ROW_FORMAT=DYNAMIC;
INSERT INTO t1_purge VALUES (1,
REPEAT('b', 766), REPEAT('c', 766), REPEAT('d', 766), REPEAT('e', 766),
REPEAT('f', 766), REPEAT('g', 766), REPEAT('h', 766));
CREATE TABLE t2_purge (
A INT PRIMARY KEY,
B BLOB, C BLOB, D BLOB, E BLOB,
F BLOB, G BLOB, H BLOB, I BLOB,
J BLOB, K BLOB, L BLOB,
INDEX (B(767))) ENGINE=InnoDB ROW_FORMAT=DYNAMIC;
INSERT INTO t2_purge VALUES (1,
REPEAT('b', 766), REPEAT('c', 766), REPEAT('d', 766), REPEAT('e', 766),
REPEAT('f', 766), REPEAT('g', 766), REPEAT('h', 766), REPEAT('i', 766),
REPEAT('j', 766), REPEAT('k', 766), REPEAT('l', 766));
CREATE TABLE t3_purge (
A INT,
B VARCHAR(800), C VARCHAR(800), D VARCHAR(800), E VARCHAR(800),
F VARCHAR(800), G VARCHAR(800), H VARCHAR(800),
PRIMARY KEY (B(767), C(767), D(767), E(767), A),
INDEX (A)
) ENGINE=InnoDB ROW_FORMAT=DYNAMIC;
INSERT INTO t3_purge SELECT * FROM t1_purge;
CREATE TABLE t4_purge (
A INT PRIMARY KEY,
B VARCHAR(800), C VARCHAR(800), D VARCHAR(800), E VARCHAR(800),
F VARCHAR(800), G VARCHAR(800), H VARCHAR(800), I VARCHAR(800),
J VARCHAR(800), K VARCHAR(800), L VARCHAR(800),
INDEX (B(767))) ENGINE=InnoDB ROW_FORMAT=DYNAMIC;
INSERT INTO t4_purge SELECT * FROM t2_purge;
DELETE FROM t1_purge;
DELETE FROM t2_purge;
DELETE FROM t3_purge;
DELETE FROM t4_purge;
set global innodb_file_per_table=0;
set global innodb_file_format=Antelope;
create table t1(a int not null, b int, c char(10) not null, d varchar(20)) engine = innodb;
create table t1(a int not null, b int, c char(10) not null, d varchar(20)) engine = innodb;
insert into t1 values (5,5,'oo','oo'),(4,4,'tr','tr'),(3,4,'ad','ad'),(2,3,'ak','ak');
insert into t1 values (5,5,'oo','oo'),(4,4,'tr','tr'),(3,4,'ad','ad'),(2,3,'ak','ak');
commit;
commit;
...
@@ -1085,3 +1128,7 @@ t2 CREATE TABLE `t2` (
...
@@ -1085,3 +1128,7 @@ t2 CREATE TABLE `t2` (
) ENGINE=InnoDB DEFAULT CHARSET=latin1
) ENGINE=InnoDB DEFAULT CHARSET=latin1
DROP TABLE t2;
DROP TABLE t2;
DROP TABLE t1;
DROP TABLE t1;
SELECT SLEEP(10);
SLEEP(10)
0
DROP TABLE t1_purge, t2_purge, t3_purge, t4_purge;
mysql-test/suite/innodb/t/innodb-index.test
View file @
b2df3228
...
@@ -4,6 +4,65 @@ let $MYSQLD_DATADIR= `select @@datadir`;
...
@@ -4,6 +4,65 @@ let $MYSQLD_DATADIR= `select @@datadir`;
let
$innodb_file_format_max_orig
=
`select @@innodb_file_format_max`
;
let
$innodb_file_format_max_orig
=
`select @@innodb_file_format_max`
;
let
$per_table
=
`select @@innodb_file_per_table`
;
let
$format
=
`select @@innodb_file_format`
;
set
global
innodb_file_per_table
=
on
;
set
global
innodb_file_format
=
'Barracuda'
;
# Test an assertion failure on purge.
CREATE
TABLE
t1_purge
(
A
INT
,
B
BLOB
,
C
BLOB
,
D
BLOB
,
E
BLOB
,
F
BLOB
,
G
BLOB
,
H
BLOB
,
PRIMARY
KEY
(
B
(
767
),
C
(
767
),
D
(
767
),
E
(
767
),
A
),
INDEX
(
A
)
)
ENGINE
=
InnoDB
ROW_FORMAT
=
DYNAMIC
;
INSERT
INTO
t1_purge
VALUES
(
1
,
REPEAT
(
'b'
,
766
),
REPEAT
(
'c'
,
766
),
REPEAT
(
'd'
,
766
),
REPEAT
(
'e'
,
766
),
REPEAT
(
'f'
,
766
),
REPEAT
(
'g'
,
766
),
REPEAT
(
'h'
,
766
));
CREATE
TABLE
t2_purge
(
A
INT
PRIMARY
KEY
,
B
BLOB
,
C
BLOB
,
D
BLOB
,
E
BLOB
,
F
BLOB
,
G
BLOB
,
H
BLOB
,
I
BLOB
,
J
BLOB
,
K
BLOB
,
L
BLOB
,
INDEX
(
B
(
767
)))
ENGINE
=
InnoDB
ROW_FORMAT
=
DYNAMIC
;
INSERT
INTO
t2_purge
VALUES
(
1
,
REPEAT
(
'b'
,
766
),
REPEAT
(
'c'
,
766
),
REPEAT
(
'd'
,
766
),
REPEAT
(
'e'
,
766
),
REPEAT
(
'f'
,
766
),
REPEAT
(
'g'
,
766
),
REPEAT
(
'h'
,
766
),
REPEAT
(
'i'
,
766
),
REPEAT
(
'j'
,
766
),
REPEAT
(
'k'
,
766
),
REPEAT
(
'l'
,
766
));
CREATE
TABLE
t3_purge
(
A
INT
,
B
VARCHAR
(
800
),
C
VARCHAR
(
800
),
D
VARCHAR
(
800
),
E
VARCHAR
(
800
),
F
VARCHAR
(
800
),
G
VARCHAR
(
800
),
H
VARCHAR
(
800
),
PRIMARY
KEY
(
B
(
767
),
C
(
767
),
D
(
767
),
E
(
767
),
A
),
INDEX
(
A
)
)
ENGINE
=
InnoDB
ROW_FORMAT
=
DYNAMIC
;
INSERT
INTO
t3_purge
SELECT
*
FROM
t1_purge
;
CREATE
TABLE
t4_purge
(
A
INT
PRIMARY
KEY
,
B
VARCHAR
(
800
),
C
VARCHAR
(
800
),
D
VARCHAR
(
800
),
E
VARCHAR
(
800
),
F
VARCHAR
(
800
),
G
VARCHAR
(
800
),
H
VARCHAR
(
800
),
I
VARCHAR
(
800
),
J
VARCHAR
(
800
),
K
VARCHAR
(
800
),
L
VARCHAR
(
800
),
INDEX
(
B
(
767
)))
ENGINE
=
InnoDB
ROW_FORMAT
=
DYNAMIC
;
INSERT
INTO
t4_purge
SELECT
*
FROM
t2_purge
;
# This would trigger the failure (Bug #12429576)
# if purge gets a chance to run before DROP TABLE t1_purge, ....
DELETE
FROM
t1_purge
;
DELETE
FROM
t2_purge
;
DELETE
FROM
t3_purge
;
DELETE
FROM
t4_purge
;
eval
set
global
innodb_file_per_table
=
$per_table
;
eval
set
global
innodb_file_format
=
$format
;
create
table
t1
(
a
int
not
null
,
b
int
,
c
char
(
10
)
not
null
,
d
varchar
(
20
))
engine
=
innodb
;
create
table
t1
(
a
int
not
null
,
b
int
,
c
char
(
10
)
not
null
,
d
varchar
(
20
))
engine
=
innodb
;
insert
into
t1
values
(
5
,
5
,
'oo'
,
'oo'
),(
4
,
4
,
'tr'
,
'tr'
),(
3
,
4
,
'ad'
,
'ad'
),(
2
,
3
,
'ak'
,
'ak'
);
insert
into
t1
values
(
5
,
5
,
'oo'
,
'oo'
),(
4
,
4
,
'tr'
,
'tr'
),(
3
,
4
,
'ad'
,
'ad'
),(
2
,
3
,
'ak'
,
'ak'
);
commit
;
commit
;
...
@@ -357,8 +416,6 @@ explain select * from t1 where b like 'adfd%';
...
@@ -357,8 +416,6 @@ explain select * from t1 where b like 'adfd%';
# end disabled45225_1
# end disabled45225_1
drop
table
t1
;
drop
table
t1
;
let
$per_table
=
`select @@innodb_file_per_table`
;
let
$format
=
`select @@innodb_file_format`
;
set
global
innodb_file_per_table
=
on
;
set
global
innodb_file_per_table
=
on
;
set
global
innodb_file_format
=
'Barracuda'
;
set
global
innodb_file_format
=
'Barracuda'
;
# Test creating a table that could lead to undo log overflow.
# Test creating a table that could lead to undo log overflow.
...
@@ -401,6 +458,7 @@ alter table t1 row_format=compact;
...
@@ -401,6 +458,7 @@ alter table t1 row_format=compact;
create
index
t1u
on
t1
(
u
(
1
));
create
index
t1u
on
t1
(
u
(
1
));
drop
table
t1
;
drop
table
t1
;
eval
set
global
innodb_file_per_table
=
$per_table
;
eval
set
global
innodb_file_per_table
=
$per_table
;
eval
set
global
innodb_file_format
=
$format
;
eval
set
global
innodb_file_format
=
$format
;
eval
set
global
innodb_file_format_max
=
$format
;
eval
set
global
innodb_file_format_max
=
$format
;
...
@@ -544,6 +602,9 @@ DROP TABLE t1;
...
@@ -544,6 +602,9 @@ DROP TABLE t1;
#
#
#DROP TABLE t1;
#DROP TABLE t1;
# end disabled45225_2
# end disabled45225_2
#this delay is needed because 45225_2 is disabled, to allow the purge to run
SELECT
SLEEP
(
10
);
DROP
TABLE
t1_purge
,
t2_purge
,
t3_purge
,
t4_purge
;
#
#
# restore environment to the state it was before this test execution
# restore environment to the state it was before this test execution
...
...
storage/innobase/row/row0row.c
View file @
b2df3228
...
@@ -151,8 +151,6 @@ row_build_index_entry(
...
@@ -151,8 +151,6 @@ row_build_index_entry(
}
else
if
(
dfield_is_ext
(
dfield
))
{
}
else
if
(
dfield_is_ext
(
dfield
))
{
ut_a
(
len
>=
BTR_EXTERN_FIELD_REF_SIZE
);
ut_a
(
len
>=
BTR_EXTERN_FIELD_REF_SIZE
);
len
-=
BTR_EXTERN_FIELD_REF_SIZE
;
len
-=
BTR_EXTERN_FIELD_REF_SIZE
;
ut_a
(
ind_field
->
prefix_len
<=
len
||
dict_index_is_clust
(
index
));
}
}
len
=
dtype_get_at_most_n_mbchars
(
len
=
dtype_get_at_most_n_mbchars
(
...
...
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