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
41fc0064
Commit
41fc0064
authored
Aug 31, 2005
by
evgen@moonbone.local
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
create.test, create.result, sql_select.cc, item.cc:
After merge fix for bug #12537
parent
f917803e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
mysql-test/r/create.result
mysql-test/r/create.result
+2
-3
mysql-test/t/create.test
mysql-test/t/create.test
+1
-2
sql/item.cc
sql/item.cc
+2
-1
sql/sql_select.cc
sql/sql_select.cc
+2
-1
No files found.
mysql-test/r/create.result
View file @
41fc0064
...
...
@@ -597,11 +597,10 @@ create table t1(t1.name int);
create table t2(test.t2.name int);
drop table t1,t2;
CREATE TABLE t1 (f1 VARCHAR(255) CHARACTER SET utf8);
CREATE TABLE t2 AS SELECT LEFT(f1,86) AS f2 FROM t1 UNION SELECT LEFT(f1,86)
AS f2 FROM t1;
CREATE TABLE t2 AS SELECT LEFT(f1,171) AS f2 FROM t1 UNION SELECT LEFT(f1,171) AS f2 FROM t1;
DESC t2;
Field Type Null Key Default Extra
f2 varchar(
86
) YES NULL
f2 varchar(
171
) YES NULL
DROP TABLE t1,t2;
create database mysqltest;
use mysqltest;
...
...
mysql-test/t/create.test
View file @
41fc0064
...
...
@@ -507,8 +507,7 @@ drop table t1,t2;
# Bug #12537: UNION produces longtext instead of varchar
#
CREATE
TABLE
t1
(
f1
VARCHAR
(
255
)
CHARACTER
SET
utf8
);
CREATE
TABLE
t2
AS
SELECT
LEFT
(
f1
,
86
)
AS
f2
FROM
t1
UNION
SELECT
LEFT
(
f1
,
86
)
AS
f2
FROM
t1
;
CREATE
TABLE
t2
AS
SELECT
LEFT
(
f1
,
171
)
AS
f2
FROM
t1
UNION
SELECT
LEFT
(
f1
,
171
)
AS
f2
FROM
t1
;
DESC
t2
;
DROP
TABLE
t1
,
t2
;
...
...
sql/item.cc
View file @
41fc0064
...
...
@@ -3648,7 +3648,8 @@ enum_field_types Item::field_type() const
Field
*
Item
::
make_string_field
(
TABLE
*
table
)
{
if
(
max_length
>
CONVERT_IF_BIGGER_TO_BLOB
)
DBUG_ASSERT
(
collation
.
collation
);
if
(
max_length
/
collation
.
collation
->
mbmaxlen
>
CONVERT_IF_BIGGER_TO_BLOB
)
return
new
Field_blob
(
max_length
,
maybe_null
,
name
,
table
,
collation
.
collation
);
if
(
max_length
>
0
)
...
...
sql/sql_select.cc
View file @
41fc0064
...
...
@@ -7963,7 +7963,8 @@ static Field *create_tmp_field_from_item(THD *thd, Item *item, TABLE *table,
if
((
type
=
item
->
field_type
())
==
MYSQL_TYPE_DATETIME
||
type
==
MYSQL_TYPE_TIME
||
type
==
MYSQL_TYPE_DATE
)
new_field
=
item
->
tmp_table_field_from_field_type
(
table
);
else
if
(
item
->
max_length
>
255
&&
convert_blob_length
)
else
if
(
item
->
max_length
/
item
->
collation
.
collation
->
mbmaxlen
>
255
&&
convert_blob_length
)
new_field
=
new
Field_varstring
(
convert_blob_length
,
maybe_null
,
item
->
name
,
table
,
item
->
collation
.
collation
);
...
...
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