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
c326e596
Commit
c326e596
authored
Aug 28, 2003
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge abotchkov@bk-internal.mysql.com:/home/bk/mysql-4.1
into deer.(none):/home/hf/work/mysql-4.1.clean
parents
36636e82
d1d92817
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
203 additions
and
1 deletion
+203
-1
mysql-test/r/create.result
mysql-test/r/create.result
+49
-0
mysql-test/t/create.test
mysql-test/t/create.test
+39
-1
sql/field.h
sql/field.h
+29
-0
sql/item.cc
sql/item.cc
+67
-0
sql/item.h
sql/item.h
+2
-0
sql/item_cmpfunc.cc
sql/item_cmpfunc.cc
+13
-0
sql/item_cmpfunc.h
sql/item_cmpfunc.h
+4
-0
No files found.
mysql-test/r/create.result
View file @
c326e596
...
...
@@ -312,3 +312,52 @@ SET SESSION table_type=default;
drop table t1;
create table t1 select x'4132';
drop table t1;
create table t1(a int,b int,c int unsigned,d date,e char,f datetime,g time,h blob);
insert into t1(a)values(1);
insert into t1(a,b,c,d,e,f,g,h)
values(2,-2,2,'1825-12-14','a','2003-1-1 3:2:1','4:3:2','binary data');
select * from t1;
a b c d e f g h
1 NULL NULL NULL NULL NULL NULL NULL
2 -2 2 1825-12-14 a 2003-01-01 03:02:01 04:03:02 binary data
select a,
ifnull(b,cast(-7 as signed)) as b,
ifnull(c,cast(7 as unsigned)) as c,
ifnull(d,cast('2000-01-01' as date)) as d,
ifnull(e,cast('b' as char)) as e,
ifnull(f,cast('2000-01-01' as datetime)) as f,
ifnull(g,cast('5:4:3' as time)) as g,
ifnull(h,cast('yet another binary data' as binary)) as h,
addtime(cast('1:0:0' as time),cast('1:0:0' as time)) as dd
from t1;
a b c d e f g h dd
1 -7 7 2000-01-01 b 2000-01-01 00:00:00 05:04:03 yet another binary data 02:00:00
2 -2 2 1825-12-14 a 2003-01-01 03:02:01 04:03:02 binary data 02:00:00
create table t2
select
a,
ifnull(b,cast(-7 as signed)) as b,
ifnull(c,cast(7 as unsigned)) as c,
ifnull(d,cast('2000-01-01' as date)) as d,
ifnull(e,cast('b' as char)) as e,
ifnull(f,cast('2000-01-01' as datetime)) as f,
ifnull(g,cast('5:4:3' as time)) as g,
ifnull(h,cast('yet another binary data' as binary)) as h,
addtime(cast('1:0:0' as time),cast('1:0:0' as time)) as dd
from t1;
explain t2;
Field Type Null Key Default Extra
a int(11) YES NULL
b bigint(11) 0
c bigint(10) 0
d date 0000-00-00
e char(1)
f datetime 0000-00-00 00:00:00
g time 00:00:00
h mediumblob
dd time 00:00:00
select * from t2;
a b c d e f g h dd
1 -7 7 2000-01-01 b 2000-01-01 00:00:00 05:04:03 yet another binary data 02:00:00
2 -2 2 1825-12-14 a 2003-01-01 03:02:01 04:03:02 binary data 02:00:00
drop table t1, t2;
mysql-test/t/create.test
View file @
c326e596
...
...
@@ -219,6 +219,44 @@ drop table t1;
#
# Bug # 801
#
create
table
t1
select
x
'4132'
;
drop
table
t1
;
#
# Test types of data for create select with functions
#
create
table
t1
(
a
int
,
b
int
,
c
int
unsigned
,
d
date
,
e
char
,
f
datetime
,
g
time
,
h
blob
);
insert
into
t1
(
a
)
values
(
1
);
insert
into
t1
(
a
,
b
,
c
,
d
,
e
,
f
,
g
,
h
)
values
(
2
,
-
2
,
2
,
'1825-12-14'
,
'a'
,
'2003-1-1 3:2:1'
,
'4:3:2'
,
'binary data'
);
select
*
from
t1
;
select
a
,
ifnull
(
b
,
cast
(
-
7
as
signed
))
as
b
,
ifnull
(
c
,
cast
(
7
as
unsigned
))
as
c
,
ifnull
(
d
,
cast
(
'2000-01-01'
as
date
))
as
d
,
ifnull
(
e
,
cast
(
'b'
as
char
))
as
e
,
ifnull
(
f
,
cast
(
'2000-01-01'
as
datetime
))
as
f
,
ifnull
(
g
,
cast
(
'5:4:3'
as
time
))
as
g
,
ifnull
(
h
,
cast
(
'yet another binary data'
as
binary
))
as
h
,
addtime
(
cast
(
'1:0:0'
as
time
),
cast
(
'1:0:0'
as
time
))
as
dd
from
t1
;
create
table
t2
select
a
,
ifnull
(
b
,
cast
(
-
7
as
signed
))
as
b
,
ifnull
(
c
,
cast
(
7
as
unsigned
))
as
c
,
ifnull
(
d
,
cast
(
'2000-01-01'
as
date
))
as
d
,
ifnull
(
e
,
cast
(
'b'
as
char
))
as
e
,
ifnull
(
f
,
cast
(
'2000-01-01'
as
datetime
))
as
f
,
ifnull
(
g
,
cast
(
'5:4:3'
as
time
))
as
g
,
ifnull
(
h
,
cast
(
'yet another binary data'
as
binary
))
as
h
,
addtime
(
cast
(
'1:0:0'
as
time
),
cast
(
'1:0:0'
as
time
))
as
dd
from
t1
;
explain
t2
;
select
*
from
t2
;
drop
table
t1
,
t2
;
sql/field.h
View file @
c326e596
...
...
@@ -305,6 +305,11 @@ class Field_decimal :public Field_num {
unireg_check_arg
,
field_name_arg
,
table_arg
,
dec_arg
,
zero_arg
,
unsigned_arg
)
{}
Field_decimal
(
uint32
len_arg
,
bool
maybe_null_arg
,
const
char
*
field_name_arg
,
struct
st_table
*
table_arg
,
bool
unsigned_arg
)
:
Field_num
((
char
*
)
0
,
len_arg
,
maybe_null_arg
?
(
uchar
*
)
""
:
0
,
0
,
NONE
,
field_name_arg
,
table_arg
,
0
,
0
,
unsigned_arg
)
{}
enum_field_types
type
()
const
{
return
FIELD_TYPE_DECIMAL
;}
enum
ha_base_keytype
key_type
()
const
{
return
zerofill
?
HA_KEYTYPE_BINARY
:
HA_KEYTYPE_NUM
;
}
...
...
@@ -334,6 +339,11 @@ class Field_tiny :public Field_num {
unireg_check_arg
,
field_name_arg
,
table_arg
,
0
,
zero_arg
,
unsigned_arg
)
{}
Field_tiny
(
uint32
len_arg
,
bool
maybe_null_arg
,
const
char
*
field_name_arg
,
struct
st_table
*
table_arg
,
bool
unsigned_arg
)
:
Field_num
((
char
*
)
0
,
len_arg
,
maybe_null_arg
?
(
uchar
*
)
""
:
0
,
0
,
NONE
,
field_name_arg
,
table_arg
,
0
,
0
,
unsigned_arg
)
{}
enum
Item_result
result_type
()
const
{
return
INT_RESULT
;
}
enum_field_types
type
()
const
{
return
FIELD_TYPE_TINY
;}
enum
ha_base_keytype
key_type
()
const
...
...
@@ -364,6 +374,11 @@ class Field_short :public Field_num {
unireg_check_arg
,
field_name_arg
,
table_arg
,
0
,
zero_arg
,
unsigned_arg
)
{}
Field_short
(
uint32
len_arg
,
bool
maybe_null_arg
,
const
char
*
field_name_arg
,
struct
st_table
*
table_arg
,
bool
unsigned_arg
)
:
Field_num
((
char
*
)
0
,
len_arg
,
maybe_null_arg
?
(
uchar
*
)
""
:
0
,
0
,
NONE
,
field_name_arg
,
table_arg
,
0
,
0
,
unsigned_arg
)
{}
enum
Item_result
result_type
()
const
{
return
INT_RESULT
;
}
enum_field_types
type
()
const
{
return
FIELD_TYPE_SHORT
;}
enum
ha_base_keytype
key_type
()
const
...
...
@@ -497,6 +512,11 @@ class Field_float :public Field_num {
unireg_check_arg
,
field_name_arg
,
table_arg
,
dec_arg
,
zero_arg
,
unsigned_arg
)
{}
Field_float
(
uint32
len_arg
,
bool
maybe_null_arg
,
const
char
*
field_name_arg
,
struct
st_table
*
table_arg
,
uint8
dec_arg
)
:
Field_num
((
char
*
)
0
,
len_arg
,
maybe_null_arg
?
(
uchar
*
)
""
:
0
,
(
uint
)
0
,
NONE
,
field_name_arg
,
table_arg
,
dec_arg
,
0
,
0
)
{}
enum_field_types
type
()
const
{
return
FIELD_TYPE_FLOAT
;}
enum
ha_base_keytype
key_type
()
const
{
return
HA_KEYTYPE_FLOAT
;
}
int
store
(
const
char
*
to
,
uint
length
,
CHARSET_INFO
*
charset
);
...
...
@@ -558,6 +578,11 @@ class Field_null :public Field_str {
:
Field_str
(
ptr_arg
,
len_arg
,
null
,
1
,
unireg_check_arg
,
field_name_arg
,
table_arg
,
cs
)
{}
Field_null
(
uint32
len_arg
,
const
char
*
field_name_arg
,
struct
st_table
*
table_arg
,
CHARSET_INFO
*
cs
)
:
Field_str
((
char
*
)
0
,
len_arg
,
null
,
1
,
NONE
,
field_name_arg
,
table_arg
,
cs
)
{}
enum_field_types
type
()
const
{
return
FIELD_TYPE_NULL
;}
int
store
(
const
char
*
to
,
uint
length
,
CHARSET_INFO
*
cs
)
{
null
[
0
]
=
1
;
return
0
;
}
int
store
(
double
nr
)
{
null
[
0
]
=
1
;
return
0
;
}
...
...
@@ -627,6 +652,10 @@ class Field_year :public Field_tiny {
:
Field_tiny
(
ptr_arg
,
len_arg
,
null_ptr_arg
,
null_bit_arg
,
unireg_check_arg
,
field_name_arg
,
table_arg
,
1
,
1
)
{}
Field_year
(
uint32
len_arg
,
bool
maybe_null_arg
,
const
char
*
field_name_arg
,
struct
st_table
*
table_arg
)
:
Field_tiny
(
len_arg
,
maybe_null_arg
,
field_name_arg
,
table_arg
,
1
)
{}
enum_field_types
type
()
const
{
return
FIELD_TYPE_YEAR
;}
int
store
(
const
char
*
to
,
uint
length
,
CHARSET_INFO
*
charset
);
int
store
(
double
nr
);
...
...
sql/item.cc
View file @
c326e596
...
...
@@ -910,6 +910,73 @@ enum_field_types Item::field_type() const
FIELD_TYPE_DOUBLE
);
}
Field
*
Item
::
tmp_table_field_from_field_type
(
TABLE
*
table
)
{
switch
(
field_type
())
{
case
MYSQL_TYPE_DECIMAL
:
return
new
Field_decimal
(
max_length
,
maybe_null
,
name
,
table
,
unsigned_flag
);
case
MYSQL_TYPE_TINY
:
return
new
Field_tiny
(
max_length
,
maybe_null
,
name
,
table
,
unsigned_flag
);
case
MYSQL_TYPE_SHORT
:
return
new
Field_short
(
max_length
,
maybe_null
,
name
,
table
,
unsigned_flag
);
case
MYSQL_TYPE_LONG
:
return
new
Field_long
(
max_length
,
maybe_null
,
name
,
table
,
unsigned_flag
);
case
MYSQL_TYPE_FLOAT
:
return
new
Field_float
(
max_length
,
maybe_null
,
name
,
table
,
decimals
);
case
MYSQL_TYPE_DOUBLE
:
return
new
Field_double
(
max_length
,
maybe_null
,
name
,
table
,
decimals
);
case
MYSQL_TYPE_NULL
:
return
new
Field_null
(
max_length
,
name
,
table
,
&
my_charset_bin
);
#ifdef HAVE_LONG_LONG
case
MYSQL_TYPE_LONGLONG
:
return
new
Field_longlong
(
max_length
,
maybe_null
,
name
,
table
,
unsigned_flag
);
#endif
case
MYSQL_TYPE_NEWDATE
:
case
MYSQL_TYPE_INT24
:
return
new
Field_long
(
max_length
,
maybe_null
,
name
,
table
,
unsigned_flag
);
case
MYSQL_TYPE_DATE
:
return
new
Field_date
(
maybe_null
,
name
,
table
,
&
my_charset_bin
);
case
MYSQL_TYPE_TIME
:
return
new
Field_time
(
maybe_null
,
name
,
table
,
&
my_charset_bin
);
case
MYSQL_TYPE_TIMESTAMP
:
case
MYSQL_TYPE_DATETIME
:
return
new
Field_datetime
(
maybe_null
,
name
,
table
,
&
my_charset_bin
);
case
MYSQL_TYPE_YEAR
:
return
new
Field_year
(
max_length
,
maybe_null
,
name
,
table
);
case
MYSQL_TYPE_ENUM
:
case
MYSQL_TYPE_SET
:
return
new
Field_long
(
max_length
,
maybe_null
,
name
,
table
,
unsigned_flag
);
case
MYSQL_TYPE_TINY_BLOB
:
case
MYSQL_TYPE_MEDIUM_BLOB
:
case
MYSQL_TYPE_LONG_BLOB
:
case
MYSQL_TYPE_BLOB
:
case
MYSQL_TYPE_GEOMETRY
:
return
new
Field_blob
(
max_length
,
maybe_null
,
name
,
table
,
collation
.
collation
);
case
MYSQL_TYPE_VAR_STRING
:
if
(
max_length
>
255
)
return
new
Field_blob
(
max_length
,
maybe_null
,
name
,
table
,
collation
.
collation
);
else
return
new
Field_varstring
(
max_length
,
maybe_null
,
name
,
table
,
collation
.
collation
);
case
MYSQL_TYPE_STRING
:
if
(
max_length
>
255
)
return
new
Field_blob
(
max_length
,
maybe_null
,
name
,
table
,
collation
.
collation
);
else
return
new
Field_string
(
max_length
,
maybe_null
,
name
,
table
,
collation
.
collation
);
default:
// This case should never be choosen
DBUG_ASSERT
(
0
);
return
0
;
}
}
/* ARGSUSED */
void
Item_field
::
make_field
(
Send_field
*
tmp_field
)
{
...
...
sql/item.h
View file @
c326e596
...
...
@@ -205,6 +205,8 @@ class Item {
virtual
bool
null_inside
()
{
return
0
;
}
// used in row subselects to get value of elements
virtual
void
bring_value
()
{}
Field
*
tmp_table_field_from_field_type
(
TABLE
*
table
);
};
...
...
sql/item_cmpfunc.cc
View file @
c326e596
...
...
@@ -698,8 +698,21 @@ Item_func_ifnull::fix_length_and_dec()
agg_arg_collations
(
collation
,
args
,
arg_count
);
else
if
(
cached_result_type
!=
REAL_RESULT
)
decimals
=
0
;
cached_field_type
=
args
[
0
]
->
field_type
();
if
(
cached_field_type
!=
args
[
1
]
->
field_type
())
cached_field_type
=
Item_func
::
field_type
();
}
enum_field_types
Item_func_ifnull
::
field_type
()
const
{
return
cached_field_type
;
}
Field
*
Item_func_ifnull
::
tmp_table_field
(
TABLE
*
table
)
{
return
tmp_table_field_from_field_type
(
table
);
}
double
Item_func_ifnull
::
val
()
...
...
sql/item_cmpfunc.h
View file @
c326e596
...
...
@@ -280,6 +280,8 @@ class Item_func_interval :public Item_int_func
class
Item_func_ifnull
:
public
Item_func
{
enum
Item_result
cached_result_type
;
enum_field_types
cached_field_type
;
bool
field_type_defined
;
public:
Item_func_ifnull
(
Item
*
a
,
Item
*
b
)
:
Item_func
(
a
,
b
),
cached_result_type
(
INT_RESULT
)
...
...
@@ -288,8 +290,10 @@ class Item_func_ifnull :public Item_func
longlong
val_int
();
String
*
val_str
(
String
*
str
);
enum
Item_result
result_type
()
const
{
return
cached_result_type
;
}
enum_field_types
field_type
()
const
;
void
fix_length_and_dec
();
const
char
*
func_name
()
const
{
return
"ifnull"
;
}
Field
*
tmp_table_field
(
TABLE
*
table
);
table_map
not_null_tables
()
const
{
return
0
;
}
};
...
...
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