~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/bigint.result

  • Committer: Brian Aker
  • Date: 2010-07-12 06:26:42 UTC
  • Revision ID: brian@gaz-20100712062642-6flofbshd9rfbi0c
MErge in change to do YES/NO like standard requires.

Show diffs side-by-side

added added

removed removed

Lines of Context:
369
369
create table t1 select -9223372036854775808 bi;
370
370
describe t1;
371
371
Field   Type    Null    Default Default_is_NULL On_Update
372
 
bi      BIGINT  FALSE           FALSE   
 
372
bi      BIGINT  NO              NO      
373
373
drop table t1;
374
374
create table t1 select -9223372036854775809 bi;
375
375
describe t1;
376
376
Field   Type    Null    Default Default_is_NULL On_Update
377
 
bi      DECIMAL FALSE           FALSE   
 
377
bi      DECIMAL NO              NO      
378
378
drop table t1;