~stewart/drizzle/embedded-innodb-rnd-read

« back to all changes in this revision

Viewing changes to tests/r/bigint.result

  • Committer: Stewart Smith
  • Date: 2010-04-06 07:37:28 UTC
  • mfrom: (1310.1.44)
  • Revision ID: stewart@flamingspork.com-20100406073728-ml0gfkm3n3yq3lj3
Merged embedded-innodb-write-row into embedded-innodb-rnd-read.

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