~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/func_math.result

  • Committer: Brian Aker
  • Date: 2009-02-18 01:52:47 UTC
  • mfrom: (873.2.35 devel)
  • Revision ID: brian@tangent.org-20090218015247-1hjai6kkwuife5zs
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
174
174
show create table t1;
175
175
Table   Create Table
176
176
t1      CREATE TABLE `t1` (
177
 
  `round(1, 6)` int NOT NULL
 
177
  `round(1, 6)` int NOT NULL DEFAULT '0'
178
178
) ENGINE=X
179
179
select * from t1;
180
180
round(1, 6)