~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/include/weight_string_l1.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' LEVEL 1));
2
 
select hex(weight_string('A' LEVEL 1));
3
 
select hex(weight_string('abc' LEVEL 1));
4
 
select hex(weight_string('abc' as char(2) LEVEL 1));
5
 
select hex(weight_string('abc' as char(3) LEVEL 1));
6
 
select hex(weight_string('abc' as char(5) LEVEL 1));
7
 
select hex(weight_string('abc' as char(5) LEVEL 1 REVERSE));
8
 
select hex(weight_string('abc' as char(5) LEVEL 1 DESC));
9
 
select hex(weight_string('abc' as char(5) LEVEL 1 DESC REVERSE));