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
eaa2a0a9
Commit
eaa2a0a9
authored
Jun 30, 2011
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql-5.1 to mysql-5.5.
parents
88eb572c
eeb028bb
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
68 additions
and
3 deletions
+68
-3
mysql-test/suite/innodb/r/innodb-index.result
mysql-test/suite/innodb/r/innodb-index.result
+13
-0
mysql-test/suite/innodb/t/innodb-index.test
mysql-test/suite/innodb/t/innodb-index.test
+16
-0
storage/innobase/row/row0row.c
storage/innobase/row/row0row.c
+39
-3
No files found.
mysql-test/suite/innodb/r/innodb-index.result
View file @
eaa2a0a9
...
...
@@ -918,6 +918,19 @@ ERROR HY000: Too big row
alter table t1 row_format=compact;
create index t1u on t1 (u(767));
drop table t1;
SET @r=REPEAT('a',500);
CREATE TABLE t1(a INT,
v1 VARCHAR(500), v2 VARCHAR(500), v3 VARCHAR(500),
v4 VARCHAR(500), v5 VARCHAR(500), v6 VARCHAR(500),
v7 VARCHAR(500), v8 VARCHAR(500), v9 VARCHAR(500),
v10 VARCHAR(500), v11 VARCHAR(500), v12 VARCHAR(500),
v13 VARCHAR(500), v14 VARCHAR(500), v15 VARCHAR(500),
v16 VARCHAR(500), v17 VARCHAR(500), v18 VARCHAR(500)
) ENGINE=InnoDB ROW_FORMAT=DYNAMIC;
CREATE INDEX idx1 ON t1(a,v1);
INSERT INTO t1 VALUES(9,@r,@r,@r,@r,@r,@r,@r,@r,@r,@r,@r,@r,@r,@r,@r,@r,@r,@r);
UPDATE t1 SET a=1000;
DROP TABLE t1;
set global innodb_file_per_table=0;
set global innodb_file_format=Antelope;
set global innodb_file_format_max=Antelope;
...
...
mysql-test/suite/innodb/t/innodb-index.test
View file @
eaa2a0a9
...
...
@@ -401,6 +401,22 @@ alter table t1 row_format=compact;
create
index
t1u
on
t1
(
u
(
767
));
drop
table
t1
;
# Bug#12637786
SET
@
r
=
REPEAT
(
'a'
,
500
);
CREATE
TABLE
t1
(
a
INT
,
v1
VARCHAR
(
500
),
v2
VARCHAR
(
500
),
v3
VARCHAR
(
500
),
v4
VARCHAR
(
500
),
v5
VARCHAR
(
500
),
v6
VARCHAR
(
500
),
v7
VARCHAR
(
500
),
v8
VARCHAR
(
500
),
v9
VARCHAR
(
500
),
v10
VARCHAR
(
500
),
v11
VARCHAR
(
500
),
v12
VARCHAR
(
500
),
v13
VARCHAR
(
500
),
v14
VARCHAR
(
500
),
v15
VARCHAR
(
500
),
v16
VARCHAR
(
500
),
v17
VARCHAR
(
500
),
v18
VARCHAR
(
500
)
)
ENGINE
=
InnoDB
ROW_FORMAT
=
DYNAMIC
;
CREATE
INDEX
idx1
ON
t1
(
a
,
v1
);
INSERT
INTO
t1
VALUES
(
9
,
@
r
,
@
r
,
@
r
,
@
r
,
@
r
,
@
r
,
@
r
,
@
r
,
@
r
,
@
r
,
@
r
,
@
r
,
@
r
,
@
r
,
@
r
,
@
r
,
@
r
,
@
r
);
UPDATE
t1
SET
a
=
1000
;
DROP
TABLE
t1
;
eval
set
global
innodb_file_per_table
=
$per_table
;
eval
set
global
innodb_file_format
=
$format
;
eval
set
global
innodb_file_format_max
=
$format
;
...
...
storage/innobase/row/row0row.c
View file @
eaa2a0a9
...
...
@@ -101,12 +101,27 @@ row_build_index_entry(
dfield_copy
(
dfield
,
dfield2
);
if
(
dfield_is_null
(
dfield
)
||
ind_field
->
prefix_len
==
0
)
{
if
(
dfield_is_null
(
dfield
))
{
continue
;
}
/* If a column prefix index, take only the prefix.
Prefix-indexed columns may be externally stored. */
if
(
ind_field
->
prefix_len
==
0
&&
(
!
dfield_is_ext
(
dfield
)
||
dict_index_is_clust
(
index
)))
{
/* The dfield_copy() above suffices for
columns that are stored in-page, or for
clustered index record columns that are not
part of a column prefix in the PRIMARY KEY. */
continue
;
}
/* If the column is stored externally (off-page) in
the clustered index, it must be an ordering field in
the secondary index. In the Antelope format, only
prefix-indexed columns may be stored off-page in the
clustered index record. In the Barracuda format, also
fully indexed long CHAR or VARCHAR columns may be
stored off-page. */
ut_ad
(
col
->
ord_part
);
if
(
UNIV_LIKELY_NULL
(
ext
))
{
...
...
@@ -119,11 +134,32 @@ row_build_index_entry(
}
dfield_set_data
(
dfield
,
buf
,
len
);
}
if
(
ind_field
->
prefix_len
==
0
)
{
/* In the Barracuda format
(ROW_FORMAT=DYNAMIC or
ROW_FORMAT=COMPRESSED), we can have a
secondary index on an entire column
that is stored off-page in the
clustered index. As this is not a
prefix index (prefix_len == 0),
include the entire off-page column in
the secondary index record. */
continue
;
}
}
else
if
(
dfield_is_ext
(
dfield
))
{
/* This table should be in Antelope format
(ROW_FORMAT=REDUNDANT or ROW_FORMAT=COMPACT).
In that format, the maximum column prefix
index length is 767 bytes, and the clustered
index record contains a 768-byte prefix of
each off-page column. */
ut_a
(
len
>=
BTR_EXTERN_FIELD_REF_SIZE
);
len
-=
BTR_EXTERN_FIELD_REF_SIZE
;
}
/* If a column prefix index, take only the prefix. */
ut_ad
(
ind_field
->
prefix_len
);
len
=
dtype_get_at_most_n_mbchars
(
col
->
prtype
,
col
->
mbminmaxlen
,
ind_field
->
prefix_len
,
len
,
dfield_get_data
(
dfield
));
...
...
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