~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/func_weight_string.result

  • Committer: Monty
  • Date: 2008-11-28 23:12:37 UTC
  • mto: (632.1.3 devel)
  • mto: This revision was merged to the branch mainline in revision 631.
  • Revision ID: mordred@palanthas.inaugust.com-20081128231237-3ie7yeohoyq3cdxi
Updated test output with new and improved error messages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
hex(weight_string('aa' as char(3)))
7
7
004100410020
8
8
select hex(weight_string('a' as char(-1)));
9
 
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-1)))' at line 1
 
9
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near '-1)))' at line 1
10
10
select hex(weight_string('a' as char(0)));
11
 
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '0)))' at line 1
 
11
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near '0)))' at line 1
12
12
select hex(weight_string('a' as char(1)));
13
13
hex(weight_string('a' as char(1)))
14
14
0041
25
25
hex(weight_string(cast('aa' as binary(3))))
26
26
616100
27
27
select hex(weight_string('ab' level 1-1 ASC));
28
 
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'ASC))' at line 1
 
28
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'ASC))' at line 1
29
29
select hex(weight_string('ab' level 1-1 DESC));
30
 
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DESC))' at line 1
 
30
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'DESC))' at line 1
31
31
select hex(weight_string('ab' level 1-1 REVERSE));
32
 
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'REVERSE))' at line 1
 
32
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'REVERSE))' at line 1
33
33
select hex(weight_string('ab' level 1 ASC));
34
34
hex(weight_string('ab' level 1 ASC))
35
35
00410042