mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Precision Math implementation
BitKeeper/etc/ignore: Added client/decimal.c client/my_decimal.cc client/my_decimal.h to the ignore list
This commit is contained in:
@ -368,8 +368,8 @@ show create table t1;
|
||||
drop table t1;
|
||||
#
|
||||
# What types and widths have variables?
|
||||
set @arg00= 8, @arg01= 8.8, @arg02= 'a string';
|
||||
create table t1 as select @arg00 as c1, @arg01 as c2, @arg02 as c3;
|
||||
set @arg00= 8, @arg01= 8.8, @arg02= 'a string', @arg03= 0.2e0;
|
||||
create table t1 as select @arg00 as c1, @arg01 as c2, @arg02 as c3, @arg03 as c4;
|
||||
show create table t1;
|
||||
drop table t1;
|
||||
|
||||
|
Reference in New Issue
Block a user