~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/cast.test

Fixed bashism.

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));
132
133
select hex(cast('a' as binary(2)));
 
134
select hex(cast('a' as char(2) binary));
133
135
 
134
136
 
135
137
#