You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# MDEV-4029 SELECT on information_schema using a subquery locks up the information_schema table due to incorrect mutexes handling
4
-
#
2
+
--echo #
3
+
--echo # MDEV-4029 SELECT on information_schema using a subquery locks up the information_schema table due to incorrect mutexes handling
4
+
--echo #
5
5
select variable_name from information_schema.session_status where variable_name =
6
6
(select variable_name from information_schema.session_status where variable_name = 'uptime');
7
7
select variable_name from information_schema.session_variables where variable_name =
8
8
(select variable_name from information_schema.session_variables where variable_name = 'basedir');
9
9
10
-
#
11
-
# MDEV-8796 Delete with sub query with information_schema.TABLES deletes too many rows
12
-
#
10
+
--echo #
11
+
--echo # MDEV-8796 Delete with sub query with information_schema.TABLES deletes too many rows
12
+
--echo #
13
13
create table t1 (x int);
14
14
create table t2 (x int);
15
15
create table t3 (x int);
16
16
create table t4 AS select table_name from information_schema.TABLES where table_schema = database() and table_type = 'BASE TABLE' ;
17
17
delete from t4 where table_name not in (select table_name from information_schema.TABLES where table_schema = database() and table_type = 'BASE TABLE');
Copy file name to clipboardExpand all lines: mysql-test/main/long_unique_bugs.test
-2Lines changed: 0 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -503,7 +503,6 @@ start transaction;
503
503
alter table tmp alter column a set default 8;
504
504
unlock tables;
505
505
drop table t2;
506
-
--source include/have_innodb.inc
507
506
508
507
--echo #
509
508
--echo # MDEV-22218 InnoDB: Failing assertion: node->pcur->rel_pos == BTR_PCUR_ON upon LOAD DATA with NO_BACKSLASH_ESCAPES in SQL_MODE and unique blob in table
@@ -642,7 +641,6 @@ insert into t1 values (0);
642
641
check table t1 extended;
643
642
drop table t1;
644
643
645
-
646
644
--echo #
647
645
--echo # MDEV-32837 long unique does not work like unique key when using replace
0 commit comments