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
a1f59825
Commit
a1f59825
authored
Aug 31, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Manual merged
mysql-test/r/create.result: Auto merged mysql-test/t/create.test: Auto merged
parents
8699f77c
15bea314
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
0 deletions
+18
-0
mysql-test/r/create.result
mysql-test/r/create.result
+7
-0
mysql-test/t/create.test
mysql-test/t/create.test
+9
-0
sql/sql_select.cc
sql/sql_select.cc
+2
-0
No files found.
mysql-test/r/create.result
View file @
a1f59825
...
...
@@ -596,6 +596,13 @@ ERROR 42000: Incorrect database name 'xyz'
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;
DESC t2;
Field Type Null Key Default Extra
f2 varchar(86) YES NULL
DROP TABLE t1,t2;
create database mysqltest;
use mysqltest;
drop database mysqltest;
...
...
mysql-test/t/create.test
View file @
a1f59825
...
...
@@ -503,6 +503,15 @@ create table t1(t1.name int);
create
table
t2
(
test
.
t2
.
name
int
);
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
;
DESC
t2
;
DROP
TABLE
t1
,
t2
;
#
# Bug#11028: Crash on create table like
#
...
...
sql/sql_select.cc
View file @
a1f59825
...
...
@@ -7953,6 +7953,8 @@ static Field *create_tmp_field_from_item(THD *thd, Item *item, TABLE *table,
item
->
name
,
table
,
item
->
unsigned_flag
);
break
;
case
STRING_RESULT
:
DBUG_ASSERT
(
item
->
collation
.
collation
);
enum
enum_field_types
type
;
/*
DATE/TIME fields have STRING_RESULT result type. To preserve
...
...
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