~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/data_dictionary_like_info.result

  • Committer: Monty Taylor
  • Date: 2010-10-05 16:22:12 UTC
  • mfrom: (1802.7.3 refactor)
  • Revision ID: mordred@inaugust.com-20101005162212-vdih5ps69hquz2s0
Rollup patch from Brian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
191
191
 or DATA_TYPE = 'varchar')
192
192
group by DATA_TYPE order by DATA_TYPE, num;
193
193
DATA_TYPE       a       num
194
 
VARCHAR #       168
 
194
VARCHAR #       #
195
195
Warnings:
196
 
Warning #       1 line(s) were cut by GROUP_CONCAT()
 
196
Warning #       #
197
197
create table t1(f1 char(1) not null, f2 char(9) not null);
198
198
select CHARACTER_MAXIMUM_LENGTH, CHARACTER_OCTET_LENGTH from
199
199
data_dictionary.columns where table_schema='test' and table_name = 't1';