~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/bigint.result

  • Committer: Andrew Hutchings
  • Date: 2010-09-08 19:03:09 UTC
  • mfrom: (1750 staging)
  • mto: (1750.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1751.
  • Revision ID: andrew@linuxjedi.co.uk-20100908190309-mya1nu7xvo1fpvk8
Merge trunk into branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
168
168
show create table t1;
169
169
Table   Create Table
170
170
t1      CREATE TABLE `t1` (
171
 
  `a` int NOT NULL
 
171
  `a` INT NOT NULL
172
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
 
  `a` bigint NOT NULL
 
178
  `a` BIGINT NOT NULL
179
179
) ENGINE=DEFAULT COLLATE = utf8_general_ci
180
180
select * from t1;
181
181
a