2 # Bug#32390 Character sets: casting utf32 to/from date doesn't work
4 CREATE
TABLE t1 AS SELECT repeat(
'a',20) AS s1 LIMIT 0;
5 SET timestamp=1216359724;
6 INSERT INTO t1 VALUES (current_date);
7 INSERT INTO t1 VALUES (current_time);
8 INSERT INTO t1 VALUES (current_timestamp);
9 SELECT s1, hex(s1) FROM t1;