mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 19:37:16 +02:00
Merge 10.3 into 10.4
This commit is contained in:
commit
589cf8dbf3
100 changed files with 2275 additions and 388 deletions
|
|
@ -2219,8 +2219,6 @@ SCHEMA_NAME
|
|||
# End of 10.1 tests
|
||||
#
|
||||
#
|
||||
# Start of 10.2 Test
|
||||
#
|
||||
# MDEV-14836: Assertion `m_status == DA_ERROR' failed in
|
||||
# Diagnostics_area::sql_errno upon query from I_S with LIMIT ROWS EXAMINED
|
||||
#
|
||||
|
|
@ -2305,5 +2303,12 @@ mysql global_priv Priv json_valid(`Priv`) def mysql
|
|||
test t a `i` > 0 def test
|
||||
drop table t;
|
||||
#
|
||||
# MDEV-24230 subquery on information_schema fails with error message
|
||||
#
|
||||
create table t1 (n int);
|
||||
create table t2 (n int);
|
||||
insert into t1 set n = (select table_rows from information_schema.tables where table_name='t2');
|
||||
drop table t1, t2;
|
||||
#
|
||||
# End of 10.3 tests
|
||||
#
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue