464
463
set @arg00= 8, @arg01= 8.8, @arg02= 'a string', @arg03= 0.2e0;
465
create table t1 as select @arg00 as c1, @arg01 as c2, @arg02 as c3, @arg03 as c4;
464
create temporary table t1 as select @arg00 as c1, @arg01 as c2, @arg02 as c3, @arg03 as c4;
469
468
`c1` bigint DEFAULT NULL,
470
469
`c2` decimal(65,30) DEFAULT NULL,