~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/type_newdecimal.result

  • Committer: Stewart Smith
  • Date: 2009-03-11 06:37:19 UTC
  • mto: (910.4.19 sparc) (937.2.1 sparc)
  • mto: This revision was merged to the branch mainline in revision 931.
  • Revision ID: stewart@flamingspork.com-20090311063719-v9iqjd00ts6260vv
batch up more INSERTs into transactions to help tests run quicker.

Show diffs side-by-side

added added

removed removed

Lines of Context:
944
944
  `my_varchar` varchar(50) DEFAULT NULL,
945
945
  `my_decimal` decimal(65,30) DEFAULT NULL
946
946
) ENGINE=X
 
947
begin;
947
948
INSERT INTO t1 SET my_float = 1.175494345e-32,
948
949
my_double = 1.175494345e-32,
949
950
my_varchar = '1.175494345e-32';
1040
1041
INSERT INTO t1 SET my_float = 1.175494345e-1,
1041
1042
my_double = 1.175494345e-1,
1042
1043
my_varchar = '1.175494345e-1';
 
1044
commit;
1043
1045
SELECT my_float, my_double, my_varchar FROM t1;
1044
1046
my_float        my_double       my_varchar
1045
1047
1.175494345e-32 1.175494345e-32 1.175494345e-32