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
86258948
Commit
86258948
authored
Aug 04, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal:/home/bk/mysql-5.0
into mysql.com:/home/jimw/my/mysql-5.0-clean
parents
01f1a3ac
c5bcb9f0
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
77 additions
and
13 deletions
+77
-13
mysql-test/r/subselect.result
mysql-test/r/subselect.result
+6
-6
mysql-test/r/view.result
mysql-test/r/view.result
+12
-1
mysql-test/r/view_grant.result
mysql-test/r/view_grant.result
+4
-4
mysql-test/t/view.test
mysql-test/t/view.test
+9
-0
sql/item_sum.cc
sql/item_sum.cc
+16
-0
sql/sql_select.cc
sql/sql_select.cc
+23
-1
sql/sql_union.cc
sql/sql_union.cc
+7
-1
No files found.
mysql-test/r/subselect.result
View file @
86258948
...
...
@@ -1087,24 +1087,24 @@ CREATE TABLE t1 SELECT * FROM (SELECT 1 as a,(SELECT 1)) a;
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`a` bigint(
20
) NOT NULL default '0',
`(SELECT 1)` bigint(
20
) NOT NULL default '0'
`a` bigint(
1
) NOT NULL default '0',
`(SELECT 1)` bigint(
1
) NOT NULL default '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1
drop table t1;
CREATE TABLE t1 SELECT * FROM (SELECT 1 as a,(SELECT a)) a;
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`a` bigint(
20
) NOT NULL default '0',
`(SELECT a)` bigint(
20
) NOT NULL default '0'
`a` bigint(
1
) NOT NULL default '0',
`(SELECT a)` bigint(
1
) NOT NULL default '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1
drop table t1;
CREATE TABLE t1 SELECT * FROM (SELECT 1 as a,(SELECT a+0)) a;
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`a` bigint(
20
) NOT NULL default '0',
`(SELECT a+0)` bigint(
20
) NOT NULL default '0'
`a` bigint(
1
) NOT NULL default '0',
`(SELECT a+0)` bigint(
3
) NOT NULL default '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1
drop table t1;
CREATE TABLE t1 SELECT (SELECT 1 as a UNION SELECT 1+1 limit 1,1) as a;
...
...
mysql-test/r/view.result
View file @
86258948
...
...
@@ -566,7 +566,7 @@ select * from v1;
col1
describe v1;
Field Type Null Key Default Extra
col1
var
char(2) YES NULL
col1 char(2) YES NULL
drop view v1;
drop table `t1a``b`;
create table t1 (col1 char(5),col2 char(5));
...
...
@@ -2007,6 +2007,17 @@ A
B
DROP VIEW v1;
DROP TABLE t1;
create table t1 (f1 tinyint(1), f2 char(1), f3 varchar(1), f4 geometry, f5 datetime);
create view v1 as select * from t1;
desc v1;
Field Type Null Key Default Extra
f1 tinyint(1) YES NULL
f2 char(1) YES NULL
f3 varchar(1) YES NULL
f4 geometry YES NULL
f5 datetime YES NULL
drop view v1;
drop table t1;
CREATE TABLE t1 ( bug_table_seq INTEGER NOT NULL);
CREATE OR REPLACE VIEW v1 AS SELECT * from t1;
DROP PROCEDURE IF EXISTS p1;
...
...
mysql-test/r/view_grant.result
View file @
86258948
...
...
@@ -72,12 +72,12 @@ select c from mysqltest.v4;
c
show columns from mysqltest.v1;
Field Type Null Key Default Extra
c bigint(
20
) YES NULL
d bigint(
20
) YES NULL
c bigint(
12
) YES NULL
d bigint(
12
) YES NULL
show columns from mysqltest.v2;
Field Type Null Key Default Extra
c bigint(
20
) YES NULL
d bigint(
20
) YES NULL
c bigint(
12
) YES NULL
d bigint(
12
) YES NULL
explain select c from mysqltest.v1;
ERROR HY000: EXPLAIN/SHOW can not be issued; lacking privileges for underlying table
show create view mysqltest.v1;
...
...
mysql-test/t/view.test
View file @
86258948
...
...
@@ -1855,6 +1855,15 @@ DROP PROCEDURE p1;
DROP
VIEW
v1
;
DROP
TABLE
t1
;
#
# Bug #11335 View redefines column types
#
create
table
t1
(
f1
tinyint
(
1
),
f2
char
(
1
),
f3
varchar
(
1
),
f4
geometry
,
f5
datetime
);
create
view
v1
as
select
*
from
t1
;
desc
v1
;
drop
view
v1
;
drop
table
t1
;
#
# Bug #11760 Typo in Item_func_add_time::print() results in NULLs returned
# subtime() in view
...
...
sql/item_sum.cc
View file @
86258948
...
...
@@ -321,6 +321,22 @@ Field *Item_sum_hybrid::create_tmp_field(bool group, TABLE *table,
field
->
flags
&=
~
NOT_NULL_FLAG
;
return
field
;
}
/*
DATE/TIME fields have STRING_RESULT result types.
In order to preserve field type, it's needed to handle DATE/TIME
fields creations separately.
*/
switch
(
args
[
0
]
->
field_type
())
{
case
MYSQL_TYPE_DATE
:
return
new
Field_date
(
maybe_null
,
name
,
table
,
collation
.
collation
);
case
MYSQL_TYPE_TIME
:
return
new
Field_time
(
maybe_null
,
name
,
table
,
collation
.
collation
);
case
MYSQL_TYPE_TIMESTAMP
:
case
MYSQL_TYPE_DATETIME
:
return
new
Field_datetime
(
maybe_null
,
name
,
table
,
collation
.
collation
);
default:
break
;
}
return
Item_sum
::
create_tmp_field
(
group
,
table
,
convert_blob_length
);
}
...
...
sql/sql_select.cc
View file @
86258948
...
...
@@ -7944,7 +7944,15 @@ static Field *create_tmp_field_from_item(THD *thd, Item *item, TABLE *table,
item
->
name
,
table
,
item
->
unsigned_flag
);
break
;
case
STRING_RESULT
:
if
(
item
->
max_length
>
255
&&
convert_blob_length
)
enum
enum_field_types
type
;
/*
DATE/TIME fields have STRING_RESULT result type. To preserve
type they needed to be handled separately.
*/
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
)
new_field
=
new
Field_varstring
(
convert_blob_length
,
maybe_null
,
item
->
name
,
table
,
item
->
collation
.
collation
);
...
...
@@ -8055,6 +8063,20 @@ Field *create_tmp_field(THD *thd, TABLE *table,Item *item, Item::Type type,
case
Item
:
:
DEFAULT_VALUE_ITEM
:
{
Item_field
*
field
=
(
Item_field
*
)
item
;
/*
If item have to be able to store NULLs but underlaid field can't do it,
create_tmp_field_from_field() can't be used for tmp field creation.
*/
if
(
field
->
maybe_null
&&
!
field
->
field
->
maybe_null
())
{
Field
*
res
=
create_tmp_field_from_item
(
thd
,
item
,
table
,
NULL
,
modify_item
,
convert_blob_length
);
*
from_field
=
field
->
field
;
if
(
res
&&
modify_item
)
((
Item_field
*
)
item
)
->
result_field
=
res
;
return
res
;
}
if
(
table_cant_handle_bit_fields
&&
field
->
field
->
type
()
==
FIELD_TYPE_BIT
)
return
create_tmp_field_from_item
(
thd
,
item
,
table
,
copy_func
,
...
...
sql/sql_union.cc
View file @
86258948
...
...
@@ -235,7 +235,13 @@ bool st_select_lex_unit::prepare(THD *thd_arg, select_result *sel_result,
if
((
res
=
(
res
||
thd_arg
->
is_fatal_error
)))
goto
err
;
if
(
sl
==
first_select
)
/*
Use items list of underlaid select for derived tables to preserve
information about fields lengths and exact types
*/
if
(
!
is_union
)
types
=
first_select_in_union
()
->
item_list
;
else
if
(
sl
==
first_select
)
{
/*
We need to create an empty table object. It is used
...
...
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