mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge pilot.blaudden:/home/msvensson/mysql/bug25197/my50-bug25197
into pilot.blaudden:/home/msvensson/mysql/mysql-5.0-maint
This commit is contained in:
@ -1038,6 +1038,10 @@ INSERT INTO `t1` (`id`, `tire`) VALUES ('A', 0), ('B', 1),('C', 2);
|
||||
SELECT REPEAT( '#', tire ) AS A,
|
||||
REPEAT( '#', tire % 999 ) AS B, tire FROM `t1`;
|
||||
|
||||
SELECT REPEAT('0', CAST(0 AS UNSIGNED));
|
||||
SELECT REPEAT('0', -2);
|
||||
SELECT REPEAT('0', 2);
|
||||
|
||||
DROP TABLE t1;
|
||||
|
||||
#
|
||||
|
Reference in New Issue
Block a user