32
33
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
33
34
select hex(weight_string('ab' level 1 ASC));
34
35
hex(weight_string('ab' level 1 ASC))
36
37
select hex(weight_string('ab' level 1 DESC));
37
38
hex(weight_string('ab' level 1 DESC))
39
40
select hex(weight_string('ab' level 1 REVERSE));
40
41
hex(weight_string('ab' level 1 REVERSE))
42
43
select hex(weight_string('ab' level 1 DESC REVERSE));
43
44
hex(weight_string('ab' level 1 DESC REVERSE))
45
46
create table t1 select weight_string('test') as w;
52
53
create table t1 select weight_string(repeat('t',66000)) as w;
59
60
select weight_string(NULL);