1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

bugfix: Item_func_weight_string::print()

This commit is contained in:
Sergei Golubchik
2016-11-04 16:54:58 +01:00
parent 232dc91bc9
commit 0980627fca
5 changed files with 33 additions and 5 deletions

View File

@ -161,6 +161,13 @@ INSERT INTO t1 (a) VALUES ('a');
SELECT a, HEX(b) FROM t1;
DROP TABLE t1;
#
# Item_func_weight_string::print()
#
create view v1 as select weight_string("MySQL" as char(4));
select * from v1;
drop view v1;
--echo #
--echo # End of 10.2 tests
--echo #