~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/func_str.result

  • Committer: Monty Taylor
  • Date: 2008-10-20 20:46:44 UTC
  • mfrom: (520.1.24 fix-type-enum)
  • Revision ID: monty@inaugust.com-20081020204644-xodw7few0jj8csq7
Merged first pass of fixing enum_field_types.

Show diffs side-by-side

added added

removed removed

Lines of Context:
714
714
insert into t1 values (1000000000),(1);
715
715
select lpad(i, 7, ' ') as t from t1;
716
716
Catalog Database        Table   Table_alias     Column  Column_alias    Type    Length  Max length      Is_null Flags   Decimals        Charsetnr
717
 
def                                     t       10      7       7       Y       128     31      63
 
717
def                                     t       9       7       7       Y       128     31      63
718
718
t
719
719
1000000
720
720
      1
721
721
select rpad(i, 7, ' ') as t from t1;
722
722
Catalog Database        Table   Table_alias     Column  Column_alias    Type    Length  Max length      Is_null Flags   Decimals        Charsetnr
723
 
def                                     t       10      7       7       Y       128     31      63
 
723
def                                     t       9       7       7       Y       128     31      63
724
724
t
725
725
1000000
726
726
1