mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
merge mysql-5.5->mysql-5.5-security
This commit is contained in:
@ -4236,3 +4236,20 @@ GROUP BY t2.a ORDER BY t1.a;
|
||||
DROP TABLE t1;
|
||||
|
||||
--echo # End of test BUG#57203
|
||||
|
||||
--echo #
|
||||
--echo # Bug#63020: Function "format"'s 'locale' argument is not considered
|
||||
--echo # when creating a "view'
|
||||
--echo #
|
||||
|
||||
CREATE TABLE t1 (f1 DECIMAL(10,2));
|
||||
INSERT INTO t1 VALUES (11.67),(17865.3),(12345678.92);
|
||||
CREATE VIEW view_t1 AS SELECT FORMAT(f1,1,'sk_SK') AS f1 FROM t1;
|
||||
SHOW CREATE VIEW view_t1;
|
||||
SELECT * FROM view_t1;
|
||||
|
||||
DROP TABLE t1;
|
||||
DROP VIEW view_t1;
|
||||
|
||||
--echo # End of test BUG#63020
|
||||
|
||||
|
Reference in New Issue
Block a user