~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/bigint.result

  • Committer: Jay Pipes
  • Date: 2010-04-08 16:27:25 UTC
  • mfrom: (1405.6.10 replication-pairs)
  • mto: This revision was merged to the branch mainline in revision 1457.
  • Revision ID: jpipes@serialcoder-20100408162725-sugbgn38oxjqclq2
Merge trunk and replication-pairs with conflict resolution

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=InnoDB
 
172
) ENGINE=DEFAULT
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=InnoDB
 
179
) ENGINE=DEFAULT
180
180
select * from t1;
181
181
a
182
182
-9223372036854775807