~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/func_math.result

Read Fields out of proto instead of FRM.

As non-radioactive fallout:
- no implicit defaults (see http://bugs.mysql.com/bug.php?id=43151)
- no real defaults for BLOB yet... but this paves the way (and it shouldn't be too hard now)

As radioactive fallout:
- parse_table_proto is approaching the length of War and Peace
- handling of corrupted proto is about non-existant. abort() is not ideal

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 DEFAULT '0'
 
177
  `round(1, 6)` int NOT NULL
178
178
) ENGINE=X
179
179
select * from t1;
180
180
round(1, 6)