~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/include/weight_string.inc

  • Committer: Brian Aker
  • Date: 2010-02-11 22:56:25 UTC
  • Revision ID: brian@gaz-20100211225625-63v3e79p78blva2u
Remove WEIGHT_STRING() from parser (where it does not belong). If someone
wants to they can reimplement this as a straight function.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
select hex(weight_string('a'));
2
 
select hex(weight_string('A'));
3
 
select hex(weight_string('abc'));
4
 
select hex(weight_string('abc' as char(2)));
5
 
select hex(weight_string('abc' as char(3)));
6
 
select hex(weight_string('abc' as char(5)));