mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Merge 10.3 into 10.4
This commit is contained in:
@@ -2217,6 +2217,17 @@ deallocate prepare stmt;
|
||||
drop table t1;
|
||||
drop view v1;
|
||||
|
||||
--echo #
|
||||
--echo # MDEV-17676: Assertion `inited==NONE || (inited==RND && scan)' failed in handler::ha_rnd_init
|
||||
--echo #
|
||||
|
||||
CREATE TABLE t1 (b1 text NOT NULL);
|
||||
INSERT INTO t1 VALUES ('2'),('1');
|
||||
EXPLAIN
|
||||
SELECT DISTINCT MIN(b1) OVER () FROM t1;
|
||||
SELECT DISTINCT MIN(b1) OVER () FROM t1;
|
||||
drop table t1;
|
||||
|
||||
--echo #
|
||||
--echo # Start of 10.3 tests
|
||||
--echo #
|
||||
|
Reference in New Issue
Block a user