~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/bigint.result

  • Committer: Patrick Crews
  • Date: 2010-08-19 23:23:15 UTC
  • mfrom: (1720.1.3 build)
  • Revision ID: gleebix@gmail.com-20100819232315-xcpbkwc5vz7kjhrp
Rollup patch - stewart's show create table patch + a couple of fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
169
169
Table   Create Table
170
170
t1      CREATE TABLE `t1` (
171
171
  `a` int NOT NULL
172
 
) ENGINE=DEFAULT
 
172
) ENGINE=DEFAULT COLLATE = utf8_general_ci
173
173
drop table t1;
174
174
create table t1 select 9223372036854775809 as 'a';
175
175
show create table t1;
176
176
Table   Create Table
177
177
t1      CREATE TABLE `t1` (
178
178
  `a` bigint NOT NULL
179
 
) ENGINE=DEFAULT
 
179
) ENGINE=DEFAULT COLLATE = utf8_general_ci
180
180
select * from t1;
181
181
a
182
182
-9223372036854775807