mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Merge branch '10.10' into 10.11
This commit is contained in:
@@ -1317,3 +1317,19 @@ a a
|
||||
4 4
|
||||
6 6
|
||||
drop table t1,t2,t3;
|
||||
#
|
||||
# MDEV-16549: Server crashes in Item_field::fix_fields on query with
|
||||
# view and subquery, Assertion `context' failed, Assertion `field' failed
|
||||
#
|
||||
CREATE TABLE t1 (a DECIMAL, b INT);
|
||||
INSERT INTO t1 VALUES (1,1),(2,2);
|
||||
CREATE VIEW v1 AS SELECT * FROM ( SELECT * FROM t1 WHERE a <> RAND() ) sq;
|
||||
SELECT * FROM v1 WHERE b > 0;
|
||||
a b
|
||||
1 1
|
||||
2 2
|
||||
DROP VIEW v1;
|
||||
DROP TABLE t1;
|
||||
#
|
||||
# End of 10.3 tests
|
||||
#
|
||||
|
Reference in New Issue
Block a user