~jaypipes/drizzle/bug530870

« back to all changes in this revision

Viewing changes to tests/r/type_float.result

  • Committer: Jay Pipes
  • Date: 2010-03-02 21:25:41 UTC
  • mfrom: (1273.1.44 staging)
  • Revision ID: jpipes@serialcoder-20100302212541-2c9ti0abq5nkkm9h
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
214748364700    21474836470000
20
20
create table t1 (f1 float,f2 float);
21
21
show columns from t1;
22
 
Field   Type    Null    Default Default is NULL On Update
 
22
Field   Type    Null    Default Default_is_NULL On_Update
23
23
f1      DOUBLE  TRUE            TRUE    
24
24
f2      DOUBLE  TRUE            TRUE    
25
25
insert into t1 values(10,10),(1e+5,1e+5),(1234567890,1234567890),(1e+10,1e+10),(1e+15,1e+15),(1e+20,1e+20),(1e+50,1e+50),(1e+150,1e+150);
102
102
drop table t1;
103
103
create table t1 (f float, f2 float, f3 float, d double, d2 float, d3 double, de decimal, de2 decimal(6), de3 decimal(5,2), n numeric, n2 numeric(8), n3 numeric(7,6));
104
104
show columns from t1;
105
 
Field   Type    Null    Default Default is NULL On Update
 
105
Field   Type    Null    Default Default_is_NULL On_Update
106
106
f       DOUBLE  TRUE            TRUE    
107
107
f2      DOUBLE  TRUE            TRUE    
108
108
f3      DOUBLE  TRUE            TRUE