~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/cast.test

MergedĀ build.

Show diffs side-by-side

added added

removed removed

Lines of Context:
129
129
#
130
130
# Bug #17903: cast to char results in binary
131
131
#
132
 
select hex(cast('a' as char(2) binary));
133
132
select hex(cast('a' as binary(2)));
134
 
select hex(cast('a' as char(2) binary));
135
133
 
136
134
 
137
135
#