Skip to content

Commit c86114f

Browse files
committed
Merge 10.3 into 10.4
2 parents 909d362 + e0c06f5 commit c86114f

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

mysql-test/main/information_schema.result

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2224,11 +2224,16 @@ SCHEMA_NAME
22242224
# MDEV-14836: Assertion `m_status == DA_ERROR' failed in
22252225
# Diagnostics_area::sql_errno upon query from I_S with LIMIT ROWS EXAMINED
22262226
#
2227-
SELECT * FROM INFORMATION_SCHEMA.`COLUMNS` LIMIT ROWS EXAMINED 10;
2228-
ERROR HY000: Unknown error
2229-
SHOW WARNINGS;
2230-
Level Code Message
2231-
Error 1105 Unknown error
2227+
SELECT * FROM seq_1_to_100 LIMIT ROWS EXAMINED 10;
2228+
seq
2229+
1
2230+
2
2231+
3
2232+
4
2233+
5
2234+
6
2235+
7
2236+
Warnings:
22322237
Warning 1931 Query execution was interrupted. The query examined at least 11 rows, which exceeds LIMIT ROWS EXAMINED (10). The query result may be incomplete
22332238
#
22342239
# End of 10.2 Test

mysql-test/main/information_schema.test

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
--source include/default_optimizer_switch.inc
2121
--source include/default_charset.inc
2222

23+
--source include/have_sequence.inc
24+
2325
set global sql_mode="";
2426
set local sql_mode="";
2527

@@ -1931,9 +1933,7 @@ SELECT SCHEMA_NAME from information_schema.schemata where schema_name=REPEAT('a'
19311933
--echo # Diagnostics_area::sql_errno upon query from I_S with LIMIT ROWS EXAMINED
19321934
--echo #
19331935

1934-
--error ER_UNKNOWN_ERROR
1935-
SELECT * FROM INFORMATION_SCHEMA.`COLUMNS` LIMIT ROWS EXAMINED 10;
1936-
SHOW WARNINGS;
1936+
SELECT * FROM seq_1_to_100 LIMIT ROWS EXAMINED 10;
19371937

19381938
--echo #
19391939
--echo # End of 10.2 Test

0 commit comments

Comments
 (0)