mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 19:37:16 +02:00
Precision Math implementation
This commit is contained in:
parent
6e6daf8189
commit
b94a482ee9
104 changed files with 9118 additions and 1717 deletions
|
|
@ -500,14 +500,15 @@ t1 CREATE TABLE `t1` (
|
|||
`c5` bigint(20) default NULL
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1
|
||||
drop table t1;
|
||||
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;
|
||||
Table Create Table
|
||||
t1 CREATE TABLE `t1` (
|
||||
`c1` bigint(20) default NULL,
|
||||
`c2` double default NULL,
|
||||
`c3` longtext
|
||||
`c2` decimal(64,30) default NULL,
|
||||
`c3` longtext,
|
||||
`c4` double default NULL
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1
|
||||
drop table t1;
|
||||
SET GLOBAL MYISAM_DATA_POINTER_SIZE= 8;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue