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
d17f4d9d
Commit
d17f4d9d
authored
Nov 09, 2009
by
Alexander Barkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug#26180 Can't add columns to tables created with utf8 (regular) text indexes
Backporting from 6.0.
parent
510844e7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
72 additions
and
2 deletions
+72
-2
mysql-test/r/ctype_utf8.result
mysql-test/r/ctype_utf8.result
+17
-0
mysql-test/t/ctype_utf8.test
mysql-test/t/ctype_utf8.test
+13
-0
sql/sql_table.cc
sql/sql_table.cc
+42
-2
No files found.
mysql-test/r/ctype_utf8.result
View file @
d17f4d9d
...
...
@@ -1881,6 +1881,23 @@ CONVERT(a, CHAR) CONVERT(b, CHAR)
DROP TABLE t1;
End of 5.0 tests
Start of 5.4 tests
CREATE TABLE t1 (
clipid INT NOT NULL,
Tape TINYTEXT,
PRIMARY KEY (clipid),
KEY tape(Tape(255))
) CHARACTER SET=utf8;
ALTER TABLE t1 ADD mos TINYINT DEFAULT 0 AFTER clipid;
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`clipid` int(11) NOT NULL,
`mos` tinyint(4) DEFAULT '0',
`Tape` tinytext,
PRIMARY KEY (`clipid`),
KEY `tape` (`Tape`(255))
) ENGINE=MyISAM DEFAULT CHARSET=utf8
DROP TABLE t1;
DROP TABLE IF EXISTS t1;
CREATE TABLE t1 (
predicted_order int NOT NULL,
...
...
mysql-test/t/ctype_utf8.test
View file @
d17f4d9d
...
...
@@ -1459,6 +1459,19 @@ DROP TABLE t1;
--
echo
Start
of
5.4
tests
#
# Bug#26180: Can't add columns to tables created with utf8 text indexes
#
CREATE
TABLE
t1
(
clipid
INT
NOT
NULL
,
Tape
TINYTEXT
,
PRIMARY
KEY
(
clipid
),
KEY
tape
(
Tape
(
255
))
)
CHARACTER
SET
=
utf8
;
ALTER
TABLE
t1
ADD
mos
TINYINT
DEFAULT
0
AFTER
clipid
;
SHOW
CREATE
TABLE
t1
;
DROP
TABLE
t1
;
#
# Bug#26474: Add Sinhala script (Sri Lanka) collation to MySQL
#
...
...
sql/sql_table.cc
View file @
d17f4d9d
...
...
@@ -5933,6 +5933,35 @@ bool alter_table_manage_keys(TABLE *table, int indexes_were_disabled,
}
/**
maximum possible length for certain blob types.
@param[in] type Blob type (e.g. MYSQL_TYPE_TINY_BLOB)
@return
length
*/
static
uint
blob_length_by_type
(
enum_field_types
type
)
{
switch
(
type
)
{
case
MYSQL_TYPE_TINY_BLOB
:
return
255
;
case
MYSQL_TYPE_BLOB
:
return
65535
;
case
MYSQL_TYPE_MEDIUM_BLOB
:
return
16777215
;
case
MYSQL_TYPE_LONG_BLOB
:
return
4294967295U
;
default:
DBUG_ASSERT
(
0
);
// we should never go here
return
0
;
}
}
/**
Prepare column and key definitions for CREATE TABLE in ALTER TABLE.
...
...
@@ -6228,6 +6257,14 @@ mysql_prepare_alter_table(THD *thd, TABLE *table,
BLOBs may have cfield->length == 0, which is why we test it before
checking whether cfield->length < key_part_length (in chars).
In case of TEXTs we check the data type maximum length *in bytes*
to key part length measured *in characters* (i.e. key_part_length
devided to mbmaxlen). This is because it's OK to have:
CREATE TABLE t1 (a tinytext, key(a(254)) character set utf8);
In case of this example:
- data type maximum length is 255.
- key_part_length is 1016 (=254*4, where 4 is mbmaxlen)
*/
if
(
!
Field
::
type_can_have_key_part
(
cfield
->
field
->
type
())
||
!
Field
::
type_can_have_key_part
(
cfield
->
sql_type
)
||
...
...
@@ -6235,8 +6272,11 @@ mysql_prepare_alter_table(THD *thd, TABLE *table,
(
key_info
->
flags
&
HA_SPATIAL
)
||
(
cfield
->
field
->
field_length
==
key_part_length
&&
!
f_is_blob
(
key_part
->
key_type
))
||
(
cfield
->
length
&&
(
cfield
->
length
<
key_part_length
/
key_part
->
field
->
charset
()
->
mbmaxlen
)))
(
cfield
->
length
&&
(((
cfield
->
sql_type
>=
MYSQL_TYPE_TINY_BLOB
&&
cfield
->
sql_type
<=
MYSQL_TYPE_BLOB
)
?
blob_length_by_type
(
cfield
->
sql_type
)
:
cfield
->
length
)
<
key_part_length
/
key_part
->
field
->
charset
()
->
mbmaxlen
)))
key_part_length
=
0
;
// Use whole field
}
key_part_length
/=
key_part
->
field
->
charset
()
->
mbmaxlen
;
...
...
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