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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
1a7275b2
Commit
1a7275b2
authored
Oct 08, 2004
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge heikki@build.mysql.com:/home/bk/mysql-4.1
into hundin.mysql.fi:/home/heikki/mysql-4.1
parents
4a1a0c48
918a3fb9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
19 deletions
+30
-19
innobase/row/row0row.c
innobase/row/row0row.c
+10
-6
innobase/row/row0sel.c
innobase/row/row0sel.c
+20
-13
No files found.
innobase/row/row0row.c
View file @
1a7275b2
...
...
@@ -386,10 +386,12 @@ row_build_row_ref(
dict_index_get_nth_field
(
clust_index
,
i
)
->
prefix_len
;
if
(
clust_col_prefix_len
>
0
)
{
if
(
len
!=
UNIV_SQL_NULL
&&
len
>
clust_col_prefix_len
)
{
if
(
len
!=
UNIV_SQL_NULL
)
{
dfield_set_len
(
dfield
,
clust_col_prefix_len
);
dfield_set_len
(
dfield
,
dtype_get_at_most_n_mbchars
(
dfield_get_type
(
dfield
),
clust_col_prefix_len
,
len
,
field
));
}
}
}
...
...
@@ -471,10 +473,12 @@ row_build_row_ref_in_tuple(
dict_index_get_nth_field
(
clust_index
,
i
)
->
prefix_len
;
if
(
clust_col_prefix_len
>
0
)
{
if
(
len
!=
UNIV_SQL_NULL
&&
len
>
clust_col_prefix_len
)
{
if
(
len
!=
UNIV_SQL_NULL
)
{
dfield_set_len
(
dfield
,
clust_col_prefix_len
);
dfield_set_len
(
dfield
,
dtype_get_at_most_n_mbchars
(
dfield_get_type
(
dfield
),
clust_col_prefix_len
,
len
,
field
));
}
}
}
...
...
innobase/row/row0sel.c
View file @
1a7275b2
...
...
@@ -2024,19 +2024,15 @@ row_sel_convert_mysql_key_to_innobase(
/* MySQL stores the actual data length to the first 2
bytes after the optional SQL NULL marker byte. The
storage format is little-endian. */
/* There are no key fields > 255 bytes currently in
MySQL */
if
(
key_ptr
[
data_offset
+
1
]
!=
0
)
{
ut_print_timestamp
(
stderr
);
fputs
(
" InnoDB: Error: BLOB or TEXT prefix > 255 bytes in query to table "
,
stderr
);
ut_print_name
(
stderr
,
trx
,
index
->
table_name
);
putc
(
'\n'
,
stderr
);
}
data_len
=
key_ptr
[
data_offset
];
storage format is little-endian, that is, the most
significant byte at a higher address. In UTF-8, MySQL
seems to reserve field->prefix_len bytes for
storing this field in the key value buffer, even
though the actual value only takes data_len bytes
from the start. */
data_len
=
key_ptr
[
data_offset
]
+
256
*
key_ptr
[
data_offset
+
1
];
data_field_len
=
data_offset
+
2
+
field
->
prefix_len
;
data_offset
+=
2
;
...
...
@@ -2044,6 +2040,17 @@ row_sel_convert_mysql_key_to_innobase(
store the column value like it would
be a fixed char field */
}
else
if
(
field
->
prefix_len
>
0
)
{
/* Looks like MySQL pads unused end bytes in the
prefix with space. Therefore, also in UTF-8, it is ok
to compare with a prefix containing full prefix_len
bytes, and no need to take at most prefix_len / 3
UTF-8 characters from the start.
If the prefix is used as the upper end of a LIKE
'abc%' query, then MySQL pads the end with chars
0xff. TODO: in that case does it any harm to compare
with the full prefix_len bytes. How do characters
0xff in UTF-8 behave? */
data_len
=
field
->
prefix_len
;
data_field_len
=
data_offset
+
data_len
;
}
else
{
...
...
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