1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-05 13:16:09 +03:00

fix incorrect merge 15700f54c2

error messages in 11.8 should have same numbers as in 11.4
This commit is contained in:
Sergei Golubchik
2025-04-17 16:29:07 +02:00
parent 76b54a2a67
commit 805e7ca3ad
19 changed files with 99 additions and 99 deletions

View File

@@ -681,10 +681,10 @@ INSERT INTO t1 VALUES
(REPEAT(0x1125,200000), REPEAT(0x1125,200000)), ('', ''), ('', ''); (REPEAT(0x1125,200000), REPEAT(0x1125,200000)), ('', ''), ('', '');
SELECT a FROM t1 GROUP BY 1 LIMIT 1 INTO @nullll; SELECT a FROM t1 GROUP BY 1 LIMIT 1 INTO @nullll;
Warnings: Warnings:
Warning 4203 1 values were longer than max_sort_length. Sorting used only the first 1024 bytes Warning 4202 1 values were longer than max_sort_length. Sorting used only the first 1024 bytes
SELECT b FROM t1 GROUP BY 1 LIMIT 1 INTO @nullll; SELECT b FROM t1 GROUP BY 1 LIMIT 1 INTO @nullll;
Warnings: Warnings:
Warning 4203 1 values were longer than max_sort_length. Sorting used only the first 1024 bytes Warning 4202 1 values were longer than max_sort_length. Sorting used only the first 1024 bytes
DROP TABLES t1; DROP TABLES t1;
End of 5.0 tests End of 5.0 tests
# #

View File

@@ -1919,7 +1919,7 @@ SELECT SUBSTRING(a,1,10), LENGTH(a), GROUP_CONCAT(b) FROM t1 GROUP BY a;
SUBSTRING(a,1,10) LENGTH(a) GROUP_CONCAT(b) SUBSTRING(a,1,10) LENGTH(a) GROUP_CONCAT(b)
1111111111 1300 one,two 1111111111 1300 one,two
Warnings: Warnings:
Warning 4203 2 values were longer than max_sort_length. Sorting used only the first 1024 bytes Warning 4202 2 values were longer than max_sort_length. Sorting used only the first 1024 bytes
EXPLAIN EXPLAIN
SELECT SUBSTRING(a,1,10), LENGTH(a) FROM t1 GROUP BY a; SELECT SUBSTRING(a,1,10), LENGTH(a) FROM t1 GROUP BY a;
id 1 id 1
@@ -1936,7 +1936,7 @@ SELECT SUBSTRING(a,1,10), LENGTH(a) FROM t1 GROUP BY a;
SUBSTRING(a,1,10) LENGTH(a) SUBSTRING(a,1,10) LENGTH(a)
1111111111 1300 1111111111 1300
Warnings: Warnings:
Warning 4203 1 values were longer than max_sort_length. Sorting used only the first 1024 bytes Warning 4202 1 values were longer than max_sort_length. Sorting used only the first 1024 bytes
DROP TABLE t1; DROP TABLE t1;
# #
# Bug#57688 Assertion `!table || (!table->write_set || bitmap_is_set(table->write_set, field # Bug#57688 Assertion `!table || (!table->write_set || bitmap_is_set(table->write_set, field
@@ -2733,7 +2733,7 @@ f1 f2
NULL NULL
NULL NULL NULL NULL
Warnings: Warnings:
Warning 4203 116 values were longer than max_sort_length. Sorting used only the first 1024 bytes Warning 4202 116 values were longer than max_sort_length. Sorting used only the first 1024 bytes
SET @@sort_buffer_size = @old_sort_buff_size; SET @@sort_buffer_size = @old_sort_buff_size;
DROP TABLE t1; DROP TABLE t1;
# #

View File

@@ -105,9 +105,9 @@ execute immediate if(@wsrep_cannot_replicate_tz, concat('ALTER TABLE time_zone_t
execute immediate if(@wsrep_cannot_replicate_tz, concat('ALTER TABLE time_zone_transition_type ENGINE=', @time_zone_transition_type_engine, ', ORDER BY Time_zone_id, Transition_type_id'), 'do 0'); execute immediate if(@wsrep_cannot_replicate_tz, concat('ALTER TABLE time_zone_transition_type ENGINE=', @time_zone_transition_type_engine, ', ORDER BY Time_zone_id, Transition_type_id'), 'do 0');
SET session alter_algorithm=@old_alter_alg; SET session alter_algorithm=@old_alter_alg;
Warnings: Warnings:
Warning 4201 The variable '@@alter_algorithm' is ignored. It only exists for compatibility with old installations and will be removed in a future release Warning 4200 The variable '@@alter_algorithm' is ignored. It only exists for compatibility with old installations and will be removed in a future release
Warnings: Warnings:
Warning 4201 The variable '@@alter_algorithm' is ignored. It only exists for compatibility with old installations and will be removed in a future release Warning 4200 The variable '@@alter_algorithm' is ignored. It only exists for compatibility with old installations and will be removed in a future release
SELECT COUNT(*) FROM time_zone; SELECT COUNT(*) FROM time_zone;
COUNT(*) COUNT(*)
2 2
@@ -166,9 +166,9 @@ SET SESSION SQL_LOG_BIN=@save_sql_log_bin;
execute immediate if(@wsrep_is_on, 'SET SESSION WSREP_ON=@save_wsrep_on', 'do 0'); execute immediate if(@wsrep_is_on, 'SET SESSION WSREP_ON=@save_wsrep_on', 'do 0');
SET session alter_algorithm=@old_alter_alg; SET session alter_algorithm=@old_alter_alg;
Warnings: Warnings:
Warning 4201 The variable '@@alter_algorithm' is ignored. It only exists for compatibility with old installations and will be removed in a future release Warning 4200 The variable '@@alter_algorithm' is ignored. It only exists for compatibility with old installations and will be removed in a future release
Warnings: Warnings:
Warning 4201 The variable '@@alter_algorithm' is ignored. It only exists for compatibility with old installations and will be removed in a future release Warning 4200 The variable '@@alter_algorithm' is ignored. It only exists for compatibility with old installations and will be removed in a future release
SELECT COUNT(*) FROM time_zone; SELECT COUNT(*) FROM time_zone;
COUNT(*) COUNT(*)
2 2
@@ -490,9 +490,9 @@ execute immediate if(@wsrep_is_on, 'SET SESSION WSREP_ON=@save_wsrep_on', 'do 0'
# #
set sql_mode=only_full_group_by; set sql_mode=only_full_group_by;
Warnings: Warnings:
Warning 4201 The variable '@@alter_algorithm' is ignored. It only exists for compatibility with old installations and will be removed in a future release Warning 4200 The variable '@@alter_algorithm' is ignored. It only exists for compatibility with old installations and will be removed in a future release
Warnings: Warnings:
Warning 4201 The variable '@@alter_algorithm' is ignored. It only exists for compatibility with old installations and will be removed in a future release Warning 4200 The variable '@@alter_algorithm' is ignored. It only exists for compatibility with old installations and will be removed in a future release
SELECT COUNT(*) FROM time_zone; SELECT COUNT(*) FROM time_zone;
COUNT(*) COUNT(*)
2 2

View File

@@ -860,7 +860,7 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxab
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxaa xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxaa
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxz xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxz
Warnings: Warnings:
Warning 4203 2 values were longer than max_sort_length. Sorting used only the first 64 bytes Warning 4202 2 values were longer than max_sort_length. Sorting used only the first 64 bytes
drop table t1; drop table t1;
create table t1 ( create table t1 (
`sid` decimal(8,0) default null, `sid` decimal(8,0) default null,
@@ -4125,7 +4125,7 @@ a substr(b, @save_max_sort_length+1)
2 AB 2 AB
1 A 1 A
Warnings: Warnings:
Warning 4203 5 values were longer than max_sort_length. Sorting used only the first 1024 bytes Warning 4202 5 values were longer than max_sort_length. Sorting used only the first 1024 bytes
analyze format=json analyze format=json
select a, substr(b, @save_max_sort_length+1) from t1 order by b desc; select a, substr(b, @save_max_sort_length+1) from t1 order by b desc;
ANALYZE ANALYZE
@@ -4172,7 +4172,7 @@ ANALYZE
} }
} }
Warnings: Warnings:
Warning 4203 5 values were longer than max_sort_length. Sorting used only the first 1024 bytes Warning 4202 5 values were longer than max_sort_length. Sorting used only the first 1024 bytes
drop table t1; drop table t1;
# #
# Packing sort keys with complex collations # Packing sort keys with complex collations

View File

@@ -831,7 +831,7 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxw xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxw
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxy xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxy
Warnings: Warnings:
Warning 4203 3 values were longer than max_sort_length. Sorting used only the first 64 bytes Warning 4202 3 values were longer than max_sort_length. Sorting used only the first 64 bytes
set max_sort_length=200; set max_sort_length=200;
select c from t1 order by c, id; select c from t1 order by c, id;
c c

View File

@@ -287,7 +287,7 @@ COMMAND_LINE_ARGUMENT OPTIONAL
GLOBAL_VALUE_PATH NULL GLOBAL_VALUE_PATH NULL
set alter_algorithm=COPY; set alter_algorithm=COPY;
Warnings: Warnings:
Warning 4201 The variable '@@alter_algorithm' is ignored. It only exists for compatibility with old installations and will be removed in a future release Warning 4200 The variable '@@alter_algorithm' is ignored. It only exists for compatibility with old installations and will be removed in a future release
select @@alter_algorithm; select @@alter_algorithm;
@@alter_algorithm @@alter_algorithm
DEFAULT DEFAULT
@@ -295,8 +295,8 @@ set statement alter_algorithm=COPY FOR SELECT @@alter_algorithm;
@@alter_algorithm @@alter_algorithm
DEFAULT DEFAULT
Warnings: Warnings:
Warning 4201 The variable '@@alter_algorithm' is ignored. It only exists for compatibility with old installations and will be removed in a future release Warning 4200 The variable '@@alter_algorithm' is ignored. It only exists for compatibility with old installations and will be removed in a future release
Warning 4201 The variable '@@alter_algorithm' is ignored. It only exists for compatibility with old installations and will be removed in a future release Warning 4200 The variable '@@alter_algorithm' is ignored. It only exists for compatibility with old installations and will be removed in a future release
# restart: --alter-algorithm=COPY # restart: --alter-algorithm=COPY
select @@alter_algorithm; select @@alter_algorithm;
@@alter_algorithm @@alter_algorithm

View File

@@ -29,8 +29,8 @@ explain select * from t1 where nm like '500%' AND fl2 = 0;
id select_type table type possible_keys key key_len ref rows Extra id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 range idx1,idx2 idx1 35 NULL 1 Using index condition; Using where 1 SIMPLE t1 range idx1,idx2 idx1 35 NULL 1 Using index condition; Using where
Warnings: Warnings:
Warning 4201 The variable '@@optimizer_adjust_secondary_key_costs' is ignored. It only exists for compatibility with old installations and will be removed in a future release Warning 4200 The variable '@@optimizer_adjust_secondary_key_costs' is ignored. It only exists for compatibility with old installations and will be removed in a future release
Warning 4201 The variable '@@optimizer_adjust_secondary_key_costs' is ignored. It only exists for compatibility with old installations and will be removed in a future release Warning 4200 The variable '@@optimizer_adjust_secondary_key_costs' is ignored. It only exists for compatibility with old installations and will be removed in a future release
set @trace=(select trace from information_schema.optimizer_trace); set @trace=(select trace from information_schema.optimizer_trace);
select json_detailed(json_extract(@trace, '$**.considered_access_paths')); select json_detailed(json_extract(@trace, '$**.considered_access_paths'));
json_detailed(json_extract(@trace, '$**.considered_access_paths')) json_detailed(json_extract(@trace, '$**.considered_access_paths'))
@@ -97,8 +97,8 @@ explain select * from t1 where nm like '500%' AND fl2 = 0;
id select_type table type possible_keys key key_len ref rows Extra id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 range idx1,idx2 idx1 35 NULL 1 Using index condition; Using where 1 SIMPLE t1 range idx1,idx2 idx1 35 NULL 1 Using index condition; Using where
Warnings: Warnings:
Warning 4201 The variable '@@optimizer_adjust_secondary_key_costs' is ignored. It only exists for compatibility with old installations and will be removed in a future release Warning 4200 The variable '@@optimizer_adjust_secondary_key_costs' is ignored. It only exists for compatibility with old installations and will be removed in a future release
Warning 4201 The variable '@@optimizer_adjust_secondary_key_costs' is ignored. It only exists for compatibility with old installations and will be removed in a future release Warning 4200 The variable '@@optimizer_adjust_secondary_key_costs' is ignored. It only exists for compatibility with old installations and will be removed in a future release
set @trace=(select trace from information_schema.optimizer_trace); set @trace=(select trace from information_schema.optimizer_trace);
select json_detailed(json_extract(@trace, '$**.considered_access_paths')); select json_detailed(json_extract(@trace, '$**.considered_access_paths'));
json_detailed(json_extract(@trace, '$**.considered_access_paths')) json_detailed(json_extract(@trace, '$**.considered_access_paths'))
@@ -163,14 +163,14 @@ select @@optimizer_adjust_secondary_key_costs;
0 0
set @@optimizer_adjust_secondary_key_costs=7; set @@optimizer_adjust_secondary_key_costs=7;
Warnings: Warnings:
Warning 4201 The variable '@@optimizer_adjust_secondary_key_costs' is ignored. It only exists for compatibility with old installations and will be removed in a future release Warning 4200 The variable '@@optimizer_adjust_secondary_key_costs' is ignored. It only exists for compatibility with old installations and will be removed in a future release
Warning 1292 Truncated incorrect optimizer_adjust_secondary_ke... value: '7' Warning 1292 Truncated incorrect optimizer_adjust_secondary_ke... value: '7'
select @@optimizer_adjust_secondary_key_costs; select @@optimizer_adjust_secondary_key_costs;
@@optimizer_adjust_secondary_key_costs @@optimizer_adjust_secondary_key_costs
2 2
set @@optimizer_adjust_secondary_key_costs=default; set @@optimizer_adjust_secondary_key_costs=default;
Warnings: Warnings:
Warning 4201 The variable '@@optimizer_adjust_secondary_key_costs' is ignored. It only exists for compatibility with old installations and will be removed in a future release Warning 4200 The variable '@@optimizer_adjust_secondary_key_costs' is ignored. It only exists for compatibility with old installations and will be removed in a future release
# #
# MDEV-34664: fix_innodb_cardinality # MDEV-34664: fix_innodb_cardinality
# #
@@ -201,7 +201,7 @@ id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ref b b 5 test.t2.a 90 Using index 1 SIMPLE t1 ref b b 5 test.t2.a 90 Using index
set @@optimizer_adjust_secondary_key_costs=8; set @@optimizer_adjust_secondary_key_costs=8;
Warnings: Warnings:
Warning 4201 The variable '@@optimizer_adjust_secondary_key_costs' is ignored. It only exists for compatibility with old installations and will be removed in a future release Warning 4200 The variable '@@optimizer_adjust_secondary_key_costs' is ignored. It only exists for compatibility with old installations and will be removed in a future release
Warning 1292 Truncated incorrect optimizer_adjust_secondary_ke... value: '8' Warning 1292 Truncated incorrect optimizer_adjust_secondary_ke... value: '8'
explain select * from t1,t2 where t1.b=t2.a; explain select * from t1,t2 where t1.b=t2.a;
id select_type table type possible_keys key key_len ref rows Extra id select_type table type possible_keys key key_len ref rows Extra
@@ -238,4 +238,4 @@ set global userstat=@save_userstat;
set global innodb_stats_persistent_sample_pages=@save_ispsp; set global innodb_stats_persistent_sample_pages=@save_ispsp;
set @@optimizer_adjust_secondary_key_costs=default; set @@optimizer_adjust_secondary_key_costs=default;
Warnings: Warnings:
Warning 4201 The variable '@@optimizer_adjust_secondary_key_costs' is ignored. It only exists for compatibility with old installations and will be removed in a future release Warning 4200 The variable '@@optimizer_adjust_secondary_key_costs' is ignored. It only exists for compatibility with old installations and will be removed in a future release

View File

@@ -899,7 +899,7 @@ Warnings:
Warning 1260 Row 1 was cut by group_concat() Warning 1260 Row 1 was cut by group_concat()
Warning 1260 Row 2 was cut by group_concat() Warning 1260 Row 2 was cut by group_concat()
Warning 1260 Row 3 was cut by group_concat() Warning 1260 Row 3 was cut by group_concat()
Warning 4203 3 values were longer than max_sort_length. Sorting used only the first 1024 bytes Warning 4202 3 values were longer than max_sort_length. Sorting used only the first 1024 bytes
set @@group_concat_max_len = 256; set @@group_concat_max_len = 256;
explain extended select left(a1,7), left(a2,7) explain extended select left(a1,7), left(a2,7)
from t1_1024 from t1_1024
@@ -917,7 +917,7 @@ Warnings:
Warning 1260 Row 1 was cut by group_concat() Warning 1260 Row 1 was cut by group_concat()
Warning 1260 Row 2 was cut by group_concat() Warning 1260 Row 2 was cut by group_concat()
Warning 1260 Row 3 was cut by group_concat() Warning 1260 Row 3 was cut by group_concat()
Warning 4203 3 values were longer than max_sort_length. Sorting used only the first 1024 bytes Warning 4202 3 values were longer than max_sort_length. Sorting used only the first 1024 bytes
drop table t1_1024, t2_1024, t3_1024; drop table t1_1024, t2_1024, t3_1024;
set @blob_len = 1025; set @blob_len = 1025;
set @suffix_len = @blob_len - @prefix_len; set @suffix_len = @blob_len - @prefix_len;
@@ -1002,7 +1002,7 @@ Warnings:
Warning 1260 Row 1 was cut by group_concat() Warning 1260 Row 1 was cut by group_concat()
Warning 1260 Row 2 was cut by group_concat() Warning 1260 Row 2 was cut by group_concat()
Warning 1260 Row 3 was cut by group_concat() Warning 1260 Row 3 was cut by group_concat()
Warning 4203 3 values were longer than max_sort_length. Sorting used only the first 1024 bytes Warning 4202 3 values were longer than max_sort_length. Sorting used only the first 1024 bytes
set @@group_concat_max_len = 256; set @@group_concat_max_len = 256;
explain extended select left(a1,7), left(a2,7) explain extended select left(a1,7), left(a2,7)
from t1_1025 from t1_1025
@@ -1020,7 +1020,7 @@ Warnings:
Warning 1260 Row 1 was cut by group_concat() Warning 1260 Row 1 was cut by group_concat()
Warning 1260 Row 2 was cut by group_concat() Warning 1260 Row 2 was cut by group_concat()
Warning 1260 Row 3 was cut by group_concat() Warning 1260 Row 3 was cut by group_concat()
Warning 4203 3 values were longer than max_sort_length. Sorting used only the first 1024 bytes Warning 4202 3 values were longer than max_sort_length. Sorting used only the first 1024 bytes
drop table t1_1025, t2_1025, t3_1025; drop table t1_1025, t2_1025, t3_1025;
create table t1bit (a1 bit(3), a2 bit(3)); create table t1bit (a1 bit(3), a2 bit(3));
create table t2bit (b1 bit(3), b2 bit(3)); create table t2bit (b1 bit(3), b2 bit(3));

View File

@@ -919,7 +919,7 @@ Warnings:
Warning 1260 Row 1 was cut by group_concat() Warning 1260 Row 1 was cut by group_concat()
Warning 1260 Row 2 was cut by group_concat() Warning 1260 Row 2 was cut by group_concat()
Warning 1260 Row 3 was cut by group_concat() Warning 1260 Row 3 was cut by group_concat()
Warning 4203 3 values were longer than max_sort_length. Sorting used only the first 1024 bytes Warning 4202 3 values were longer than max_sort_length. Sorting used only the first 1024 bytes
set @@group_concat_max_len = 256; set @@group_concat_max_len = 256;
explain extended select left(a1,7), left(a2,7) explain extended select left(a1,7), left(a2,7)
from t1_1024 from t1_1024
@@ -938,7 +938,7 @@ Warnings:
Warning 1260 Row 1 was cut by group_concat() Warning 1260 Row 1 was cut by group_concat()
Warning 1260 Row 2 was cut by group_concat() Warning 1260 Row 2 was cut by group_concat()
Warning 1260 Row 3 was cut by group_concat() Warning 1260 Row 3 was cut by group_concat()
Warning 4203 3 values were longer than max_sort_length. Sorting used only the first 1024 bytes Warning 4202 3 values were longer than max_sort_length. Sorting used only the first 1024 bytes
drop table t1_1024, t2_1024, t3_1024; drop table t1_1024, t2_1024, t3_1024;
set @blob_len = 1025; set @blob_len = 1025;
set @suffix_len = @blob_len - @prefix_len; set @suffix_len = @blob_len - @prefix_len;
@@ -1024,7 +1024,7 @@ Warnings:
Warning 1260 Row 1 was cut by group_concat() Warning 1260 Row 1 was cut by group_concat()
Warning 1260 Row 2 was cut by group_concat() Warning 1260 Row 2 was cut by group_concat()
Warning 1260 Row 3 was cut by group_concat() Warning 1260 Row 3 was cut by group_concat()
Warning 4203 3 values were longer than max_sort_length. Sorting used only the first 1024 bytes Warning 4202 3 values were longer than max_sort_length. Sorting used only the first 1024 bytes
set @@group_concat_max_len = 256; set @@group_concat_max_len = 256;
explain extended select left(a1,7), left(a2,7) explain extended select left(a1,7), left(a2,7)
from t1_1025 from t1_1025
@@ -1043,7 +1043,7 @@ Warnings:
Warning 1260 Row 1 was cut by group_concat() Warning 1260 Row 1 was cut by group_concat()
Warning 1260 Row 2 was cut by group_concat() Warning 1260 Row 2 was cut by group_concat()
Warning 1260 Row 3 was cut by group_concat() Warning 1260 Row 3 was cut by group_concat()
Warning 4203 3 values were longer than max_sort_length. Sorting used only the first 1024 bytes Warning 4202 3 values were longer than max_sort_length. Sorting used only the first 1024 bytes
drop table t1_1025, t2_1025, t3_1025; drop table t1_1025, t2_1025, t3_1025;
create table t1bit (a1 bit(3), a2 bit(3)); create table t1bit (a1 bit(3), a2 bit(3));
create table t2bit (b1 bit(3), b2 bit(3)); create table t2bit (b1 bit(3), b2 bit(3));

View File

@@ -13,7 +13,7 @@ select vec_totext(x'aabbcc');
vec_totext(x'aabbcc') vec_totext(x'aabbcc')
NULL NULL
Warnings: Warnings:
Warning 4204 Invalid binary vector format. Must use IEEE standard float representation in little-endian format. Use VEC_FromText() to generate it. Warning 4203 Invalid binary vector format. Must use IEEE standard float representation in little-endian format. Use VEC_FromText() to generate it.
select vec_totext(x'0000f07f'); select vec_totext(x'0000f07f');
vec_totext(x'0000f07f') vec_totext(x'0000f07f')
[NaN] [NaN]
@@ -30,7 +30,7 @@ select hex(vec_fromtext('["a"]'));
hex(vec_fromtext('["a"]')) hex(vec_fromtext('["a"]'))
NULL NULL
Warnings: Warnings:
Warning 4205 Invalid vector format at offset: 4 for '["a"]'. Must be a valid JSON array of numbers. Warning 4204 Invalid vector format at offset: 4 for '["a"]'. Must be a valid JSON array of numbers.
select hex(vec_fromtext('[]')); select hex(vec_fromtext('[]'));
hex(vec_fromtext('[]')) hex(vec_fromtext('[]'))
@@ -38,52 +38,52 @@ select hex(vec_fromtext('["a"]'));
hex(vec_fromtext('["a"]')) hex(vec_fromtext('["a"]'))
NULL NULL
Warnings: Warnings:
Warning 4205 Invalid vector format at offset: 4 for '["a"]'. Must be a valid JSON array of numbers. Warning 4204 Invalid vector format at offset: 4 for '["a"]'. Must be a valid JSON array of numbers.
select hex(vec_fromtext('[{"a": "b"}]')); select hex(vec_fromtext('[{"a": "b"}]'));
hex(vec_fromtext('[{"a": "b"}]')) hex(vec_fromtext('[{"a": "b"}]'))
NULL NULL
Warnings: Warnings:
Warning 4205 Invalid vector format at offset: 2 for '[{"a": "b"}]'. Must be a valid JSON array of numbers. Warning 4204 Invalid vector format at offset: 2 for '[{"a": "b"}]'. Must be a valid JSON array of numbers.
select hex(vec_fromtext('[null]')); select hex(vec_fromtext('[null]'));
hex(vec_fromtext('[null]')) hex(vec_fromtext('[null]'))
NULL NULL
Warnings: Warnings:
Warning 4205 Invalid vector format at offset: 5 for '[null]'. Must be a valid JSON array of numbers. Warning 4204 Invalid vector format at offset: 5 for '[null]'. Must be a valid JSON array of numbers.
select hex(vec_fromtext('[1, null]')); select hex(vec_fromtext('[1, null]'));
hex(vec_fromtext('[1, null]')) hex(vec_fromtext('[1, null]'))
NULL NULL
Warnings: Warnings:
Warning 4205 Invalid vector format at offset: 8 for '[1, null]'. Must be a valid JSON array of numbers. Warning 4204 Invalid vector format at offset: 8 for '[1, null]'. Must be a valid JSON array of numbers.
select hex(vec_fromtext('[1, ["a"]]')); select hex(vec_fromtext('[1, ["a"]]'));
hex(vec_fromtext('[1, ["a"]]')) hex(vec_fromtext('[1, ["a"]]'))
NULL NULL
Warnings: Warnings:
Warning 4205 Invalid vector format at offset: 5 for '[1, ["a"]]'. Must be a valid JSON array of numbers. Warning 4204 Invalid vector format at offset: 5 for '[1, ["a"]]'. Must be a valid JSON array of numbers.
select hex(vec_fromtext('[1, [2]]')); select hex(vec_fromtext('[1, [2]]'));
hex(vec_fromtext('[1, [2]]')) hex(vec_fromtext('[1, [2]]'))
NULL NULL
Warnings: Warnings:
Warning 4205 Invalid vector format at offset: 5 for '[1, [2]]'. Must be a valid JSON array of numbers. Warning 4204 Invalid vector format at offset: 5 for '[1, [2]]'. Must be a valid JSON array of numbers.
select hex(vec_fromtext('{"a":"b"}')); select hex(vec_fromtext('{"a":"b"}'));
hex(vec_fromtext('{"a":"b"}')) hex(vec_fromtext('{"a":"b"}'))
NULL NULL
Warnings: Warnings:
Warning 4205 Invalid vector format at offset: 1 for '{"a":"b"}'. Must be a valid JSON array of numbers. Warning 4204 Invalid vector format at offset: 1 for '{"a":"b"}'. Must be a valid JSON array of numbers.
select hex(vec_fromtext('[1, 2, "z", 3]')); select hex(vec_fromtext('[1, 2, "z", 3]'));
hex(vec_fromtext('[1, 2, "z", 3]')) hex(vec_fromtext('[1, 2, "z", 3]'))
NULL NULL
Warnings: Warnings:
Warning 4205 Invalid vector format at offset: 10 for '[1, 2, "z", 3]'. Must be a valid JSON array of numbers. Warning 4204 Invalid vector format at offset: 10 for '[1, 2, "z", 3]'. Must be a valid JSON array of numbers.
select hex(vec_fromtext('[1, 2, 3')); select hex(vec_fromtext('[1, 2, 3'));
hex(vec_fromtext('[1, 2, 3')) hex(vec_fromtext('[1, 2, 3'))
NULL NULL
Warnings: Warnings:
Warning 4205 Invalid vector format at offset: 8 for '[1, 2, 3'. Must be a valid JSON array of numbers. Warning 4204 Invalid vector format at offset: 8 for '[1, 2, 3'. Must be a valid JSON array of numbers.
select hex(vec_fromtext('1, 2, 3]')); select hex(vec_fromtext('1, 2, 3]'));
hex(vec_fromtext('1, 2, 3]')) hex(vec_fromtext('1, 2, 3]'))
NULL NULL
Warnings: Warnings:
Warning 4205 Invalid vector format at offset: 1 for '1, 2, 3]'. Must be a valid JSON array of numbers. Warning 4204 Invalid vector format at offset: 1 for '1, 2, 3]'. Must be a valid JSON array of numbers.
select hex(vec_fromtext('[]')); select hex(vec_fromtext('[]'));
hex(vec_fromtext('[]')) hex(vec_fromtext('[]'))
@@ -141,7 +141,7 @@ select vec_fromtext(v) from t;
vec_fromtext(v) vec_fromtext(v)
NULL NULL
Warnings: Warnings:
Warning 4205 Invalid vector format at offset: 1 for '{\0014n?'. Must be a valid JSON array of numbers. Warning 4204 Invalid vector format at offset: 1 for '{\0014n?'. Must be a valid JSON array of numbers.
drop table t; drop table t;
select vec_fromtext(0x00000000); select vec_fromtext(0x00000000);
vec_fromtext(0x00000000) vec_fromtext(0x00000000)

View File

@@ -768,7 +768,7 @@ col_1_text = REPEAT("क", 4000)
1 1
0 0
Warnings: Warnings:
Warning 4203 2 values were longer than max_sort_length. Sorting used only the first 1024 bytes Warning 4202 2 values were longer than max_sort_length. Sorting used only the first 1024 bytes
DROP TABLE worklog5743; DROP TABLE worklog5743;
CREATE TABLE worklog5743 ( CREATE TABLE worklog5743 (
col_1_text TEXT(4000) , col_2_text TEXT(4000) , col_1_text TEXT(4000) , col_2_text TEXT(4000) ,

View File

@@ -30,7 +30,7 @@ insert into t2 values (0);
xa end 's'; xa end 's';
xa prepare 's'; xa prepare 's';
Warnings: Warnings:
Warning 4196 Pseudo thread id should not be modified by the client as it will be overwritten Warning 4205 Pseudo thread id should not be modified by the client as it will be overwritten
include/save_master_gtid.inc include/save_master_gtid.inc
connection slave; connection slave;
include/sync_with_master_gtid.inc include/sync_with_master_gtid.inc

View File

@@ -36,7 +36,7 @@ insert into t2 values (0);
xa end 's'; xa end 's';
xa prepare 's'; xa prepare 's';
Warnings: Warnings:
Warning 4196 Pseudo thread id should not be modified by the client as it will be overwritten Warning 4205 Pseudo thread id should not be modified by the client as it will be overwritten
include/save_master_gtid.inc include/save_master_gtid.inc
connection slave; connection slave;
include/sync_with_master_gtid.inc include/sync_with_master_gtid.inc

View File

@@ -4,7 +4,7 @@ SELECT @@global.alter_algorithm;
DEFAULT DEFAULT
SET GLOBAL alter_algorithm=2; SET GLOBAL alter_algorithm=2;
Warnings: Warnings:
Warning 4201 The variable '@@alter_algorithm' is ignored. It only exists for compatibility with old installations and will be removed in a future release Warning 4200 The variable '@@alter_algorithm' is ignored. It only exists for compatibility with old installations and will be removed in a future release
SELECT @@global.alter_algorithm; SELECT @@global.alter_algorithm;
@@global.alter_algorithm @@global.alter_algorithm
DEFAULT DEFAULT
@@ -15,7 +15,7 @@ SELECT @@global.alter_algorithm;
DEFAULT DEFAULT
SET SESSION alter_algorithm=INSTANT; SET SESSION alter_algorithm=INSTANT;
Warnings: Warnings:
Warning 4201 The variable '@@alter_algorithm' is ignored. It only exists for compatibility with old installations and will be removed in a future release Warning 4200 The variable '@@alter_algorithm' is ignored. It only exists for compatibility with old installations and will be removed in a future release
SHOW SESSION VARIABLES LIKE 'alter_algorithm'; SHOW SESSION VARIABLES LIKE 'alter_algorithm';
Variable_name Value Variable_name Value
alter_algorithm DEFAULT alter_algorithm DEFAULT

View File

@@ -5,10 +5,10 @@ SELECT @global_start_value;
'#--------------------FN_DYNVARS_046_01------------------------#' '#--------------------FN_DYNVARS_046_01------------------------#'
SET @@global.innodb_purge_rseg_truncate_frequency = 1; SET @@global.innodb_purge_rseg_truncate_frequency = 1;
Warnings: Warnings:
Warning 4201 The variable '@@innodb_purge_rseg_truncate_frequency' is ignored. It only exists for compatibility with old installations and will be removed in a future release Warning 4200 The variable '@@innodb_purge_rseg_truncate_frequency' is ignored. It only exists for compatibility with old installations and will be removed in a future release
SET @@global.innodb_purge_rseg_truncate_frequency = DEFAULT; SET @@global.innodb_purge_rseg_truncate_frequency = DEFAULT;
Warnings: Warnings:
Warning 4201 The variable '@@innodb_purge_rseg_truncate_frequency' is ignored. It only exists for compatibility with old installations and will be removed in a future release Warning 4200 The variable '@@innodb_purge_rseg_truncate_frequency' is ignored. It only exists for compatibility with old installations and will be removed in a future release
SELECT @@global.innodb_purge_rseg_truncate_frequency; SELECT @@global.innodb_purge_rseg_truncate_frequency;
@@global.innodb_purge_rseg_truncate_frequency @@global.innodb_purge_rseg_truncate_frequency
128 128
@@ -22,40 +22,40 @@ SELECT local.innodb_purge_rseg_truncate_frequency;
ERROR 42S02: Unknown table 'local' in SELECT ERROR 42S02: Unknown table 'local' in SELECT
SET global innodb_purge_rseg_truncate_frequency = 1; SET global innodb_purge_rseg_truncate_frequency = 1;
Warnings: Warnings:
Warning 4201 The variable '@@innodb_purge_rseg_truncate_frequency' is ignored. It only exists for compatibility with old installations and will be removed in a future release Warning 4200 The variable '@@innodb_purge_rseg_truncate_frequency' is ignored. It only exists for compatibility with old installations and will be removed in a future release
SELECT @@global.innodb_purge_rseg_truncate_frequency; SELECT @@global.innodb_purge_rseg_truncate_frequency;
@@global.innodb_purge_rseg_truncate_frequency @@global.innodb_purge_rseg_truncate_frequency
1 1
'#--------------------FN_DYNVARS_046_03------------------------#' '#--------------------FN_DYNVARS_046_03------------------------#'
SET @@global.innodb_purge_rseg_truncate_frequency = 1; SET @@global.innodb_purge_rseg_truncate_frequency = 1;
Warnings: Warnings:
Warning 4201 The variable '@@innodb_purge_rseg_truncate_frequency' is ignored. It only exists for compatibility with old installations and will be removed in a future release Warning 4200 The variable '@@innodb_purge_rseg_truncate_frequency' is ignored. It only exists for compatibility with old installations and will be removed in a future release
SELECT @@global.innodb_purge_rseg_truncate_frequency; SELECT @@global.innodb_purge_rseg_truncate_frequency;
@@global.innodb_purge_rseg_truncate_frequency @@global.innodb_purge_rseg_truncate_frequency
1 1
SET @@global.innodb_purge_rseg_truncate_frequency = 1; SET @@global.innodb_purge_rseg_truncate_frequency = 1;
Warnings: Warnings:
Warning 4201 The variable '@@innodb_purge_rseg_truncate_frequency' is ignored. It only exists for compatibility with old installations and will be removed in a future release Warning 4200 The variable '@@innodb_purge_rseg_truncate_frequency' is ignored. It only exists for compatibility with old installations and will be removed in a future release
SELECT @@global.innodb_purge_rseg_truncate_frequency; SELECT @@global.innodb_purge_rseg_truncate_frequency;
@@global.innodb_purge_rseg_truncate_frequency @@global.innodb_purge_rseg_truncate_frequency
1 1
SET @@global.innodb_purge_rseg_truncate_frequency = 128; SET @@global.innodb_purge_rseg_truncate_frequency = 128;
Warnings: Warnings:
Warning 4201 The variable '@@innodb_purge_rseg_truncate_frequency' is ignored. It only exists for compatibility with old installations and will be removed in a future release Warning 4200 The variable '@@innodb_purge_rseg_truncate_frequency' is ignored. It only exists for compatibility with old installations and will be removed in a future release
SELECT @@global.innodb_purge_rseg_truncate_frequency; SELECT @@global.innodb_purge_rseg_truncate_frequency;
@@global.innodb_purge_rseg_truncate_frequency @@global.innodb_purge_rseg_truncate_frequency
128 128
'#--------------------FN_DYNVARS_046_05-------------------------#' '#--------------------FN_DYNVARS_046_05-------------------------#'
SET @@global.innodb_purge_rseg_truncate_frequency = -1; SET @@global.innodb_purge_rseg_truncate_frequency = -1;
Warnings: Warnings:
Warning 4201 The variable '@@innodb_purge_rseg_truncate_frequency' is ignored. It only exists for compatibility with old installations and will be removed in a future release Warning 4200 The variable '@@innodb_purge_rseg_truncate_frequency' is ignored. It only exists for compatibility with old installations and will be removed in a future release
Warning 1292 Truncated incorrect innodb_purge_rseg_truncate_fr... value: '-1' Warning 1292 Truncated incorrect innodb_purge_rseg_truncate_fr... value: '-1'
SELECT @@global.innodb_purge_rseg_truncate_frequency; SELECT @@global.innodb_purge_rseg_truncate_frequency;
@@global.innodb_purge_rseg_truncate_frequency @@global.innodb_purge_rseg_truncate_frequency
1 1
SET @@global.innodb_purge_rseg_truncate_frequency = -1024; SET @@global.innodb_purge_rseg_truncate_frequency = -1024;
Warnings: Warnings:
Warning 4201 The variable '@@innodb_purge_rseg_truncate_frequency' is ignored. It only exists for compatibility with old installations and will be removed in a future release Warning 4200 The variable '@@innodb_purge_rseg_truncate_frequency' is ignored. It only exists for compatibility with old installations and will be removed in a future release
Warning 1292 Truncated incorrect innodb_purge_rseg_truncate_fr... value: '-1024' Warning 1292 Truncated incorrect innodb_purge_rseg_truncate_fr... value: '-1024'
SELECT @@global.innodb_purge_rseg_truncate_frequency; SELECT @@global.innodb_purge_rseg_truncate_frequency;
@@global.innodb_purge_rseg_truncate_frequency @@global.innodb_purge_rseg_truncate_frequency
@@ -113,20 +113,20 @@ SELECT @@global.innodb_purge_rseg_truncate_frequency;
'#---------------------FN_DYNVARS_046_08----------------------#' '#---------------------FN_DYNVARS_046_08----------------------#'
SET @@global.innodb_purge_rseg_truncate_frequency = TRUE; SET @@global.innodb_purge_rseg_truncate_frequency = TRUE;
Warnings: Warnings:
Warning 4201 The variable '@@innodb_purge_rseg_truncate_frequency' is ignored. It only exists for compatibility with old installations and will be removed in a future release Warning 4200 The variable '@@innodb_purge_rseg_truncate_frequency' is ignored. It only exists for compatibility with old installations and will be removed in a future release
SELECT @@global.innodb_purge_rseg_truncate_frequency; SELECT @@global.innodb_purge_rseg_truncate_frequency;
@@global.innodb_purge_rseg_truncate_frequency @@global.innodb_purge_rseg_truncate_frequency
1 1
SET @@global.innodb_purge_rseg_truncate_frequency = FALSE; SET @@global.innodb_purge_rseg_truncate_frequency = FALSE;
Warnings: Warnings:
Warning 4201 The variable '@@innodb_purge_rseg_truncate_frequency' is ignored. It only exists for compatibility with old installations and will be removed in a future release Warning 4200 The variable '@@innodb_purge_rseg_truncate_frequency' is ignored. It only exists for compatibility with old installations and will be removed in a future release
Warning 1292 Truncated incorrect innodb_purge_rseg_truncate_fr... value: '0' Warning 1292 Truncated incorrect innodb_purge_rseg_truncate_fr... value: '0'
SELECT @@global.innodb_purge_rseg_truncate_frequency; SELECT @@global.innodb_purge_rseg_truncate_frequency;
@@global.innodb_purge_rseg_truncate_frequency @@global.innodb_purge_rseg_truncate_frequency
1 1
SET @@global.innodb_purge_rseg_truncate_frequency = @global_start_value; SET @@global.innodb_purge_rseg_truncate_frequency = @global_start_value;
Warnings: Warnings:
Warning 4201 The variable '@@innodb_purge_rseg_truncate_frequency' is ignored. It only exists for compatibility with old installations and will be removed in a future release Warning 4200 The variable '@@innodb_purge_rseg_truncate_frequency' is ignored. It only exists for compatibility with old installations and will be removed in a future release
SELECT @@global.innodb_purge_rseg_truncate_frequency; SELECT @@global.innodb_purge_rseg_truncate_frequency;
@@global.innodb_purge_rseg_truncate_frequency @@global.innodb_purge_rseg_truncate_frequency
128 128

View File

@@ -40,7 +40,7 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxsy
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Warnings: Warnings:
Warning 4203 6 values were longer than max_sort_length. Sorting used only the first 69 bytes Warning 4202 6 values were longer than max_sort_length. Sorting used only the first 69 bytes
** Results should be sorted ** ** Results should be sorted **
'#--------------------FN_DYNVARS_098_02-------------------------#' '#--------------------FN_DYNVARS_098_02-------------------------#'
connect test_con2,localhost,root,,; connect test_con2,localhost,root,,;
@@ -94,7 +94,7 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxrx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxsy xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxsy
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxgw xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxgw
Warnings: Warnings:
Warning 4203 16 values were longer than max_sort_length. Sorting used only the first 64 bytes Warning 4202 16 values were longer than max_sort_length. Sorting used only the first 64 bytes
** Results should not be sorted ** ** Results should not be sorted **
'#--------------------FN_DYNVARS_098_03-------------------------#' '#--------------------FN_DYNVARS_098_03-------------------------#'
SET max_sort_length=64; SET max_sort_length=64;
@@ -125,7 +125,7 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxrx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxsy xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxsy
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxgw xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxgw
Warnings: Warnings:
Warning 4203 20 values were longer than max_sort_length. Sorting used only the first 64 bytes Warning 4202 20 values were longer than max_sort_length. Sorting used only the first 64 bytes
** Results should not be sorted ** ** Results should not be sorted **
RESET QUERY CACHE; RESET QUERY CACHE;
'#--------------------FN_DYNVARS_098_04-------------------------#' '#--------------------FN_DYNVARS_098_04-------------------------#'
@@ -153,7 +153,7 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Warnings: Warnings:
Warning 4203 15 values were longer than max_sort_length. Sorting used only the first 69 bytes Warning 4202 15 values were longer than max_sort_length. Sorting used only the first 69 bytes
** Results should be sorted ** ** Results should be sorted **
'#--------------------FN_DYNVARS_098_05-------------------------#' '#--------------------FN_DYNVARS_098_05-------------------------#'
SET max_sort_length=70; SET max_sort_length=70;
@@ -225,7 +225,7 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxgw
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxsy xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxsy
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxrx xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxrx
Warnings: Warnings:
Warning 4203 4 values were longer than max_sort_length. Sorting used only the first 70 bytes Warning 4202 4 values were longer than max_sort_length. Sorting used only the first 70 bytes
** Results should be sorted ** ** Results should be sorted **
SET @@session.max_sort_length = 64; SET @@session.max_sort_length = 64;
SELECT @@session.max_sort_length; SELECT @@session.max_sort_length;
@@ -246,7 +246,7 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxrx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxsy xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxsy
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxgw xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxgw
Warnings: Warnings:
Warning 4203 8 values were longer than max_sort_length. Sorting used only the first 64 bytes Warning 4202 8 values were longer than max_sort_length. Sorting used only the first 64 bytes
** Results should not be sorted ** ** Results should not be sorted **
'#--------------------FN_DYNVARS_098_08-------------------------#' '#--------------------FN_DYNVARS_098_08-------------------------#'
Testing type CHAR Testing type CHAR
@@ -265,7 +265,7 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxrx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxsy xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxsy
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxgw xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxgw
Warnings: Warnings:
Warning 4203 4 values were longer than max_sort_length. Sorting used only the first 64 bytes Warning 4202 4 values were longer than max_sort_length. Sorting used only the first 64 bytes
** Results should not be sorted ** ** Results should not be sorted **
SET @@session.max_sort_length = 64; SET @@session.max_sort_length = 64;
SELECT @@session.max_sort_length; SELECT @@session.max_sort_length;
@@ -286,7 +286,7 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxrx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxsy xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxsy
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxgw xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxgw
Warnings: Warnings:
Warning 4203 8 values were longer than max_sort_length. Sorting used only the first 64 bytes Warning 4202 8 values were longer than max_sort_length. Sorting used only the first 64 bytes
** Results should not be sorted ** ** Results should not be sorted **
DROP TABLE t, t1, t2; DROP TABLE t, t1, t2;
# #
@@ -308,7 +308,7 @@ StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrzzz
StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStryyy StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStryyy
StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrxxx StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrxxx
Warnings: Warnings:
Warning 4203 3 values were longer than max_sort_length. Sorting used only the first 70 bytes Warning 4202 3 values were longer than max_sort_length. Sorting used only the first 70 bytes
# Make sure there are warnings when a string function is used: # Make sure there are warnings when a string function is used:
select a from t1 order by coalesce(a); select a from t1 order by coalesce(a);
a a
@@ -318,7 +318,7 @@ StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrzzz
StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStryyy StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStryyy
StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrxxx StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrxxx
Warnings: Warnings:
Warning 4203 3 values were longer than max_sort_length. Sorting used only the first 70 bytes Warning 4202 3 values were longer than max_sort_length. Sorting used only the first 70 bytes
select a from t1 order by concat(a, '1'); select a from t1 order by concat(a, '1');
a a
ShortStr1 ShortStr1
@@ -327,7 +327,7 @@ StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrzzz
StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStryyy StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStryyy
StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrxxx StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrxxx
Warnings: Warnings:
Warning 4203 3 values were longer than max_sort_length. Sorting used only the first 70 bytes Warning 4202 3 values were longer than max_sort_length. Sorting used only the first 70 bytes
select a from t1 order by binary(a); select a from t1 order by binary(a);
a a
ShortStr1 ShortStr1
@@ -336,7 +336,7 @@ StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrzzz
StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStryyy StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStryyy
StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrxxx StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrStrxxx
Warnings: Warnings:
Warning 4203 3 values were longer than max_sort_length. Sorting used only the first 70 bytes Warning 4202 3 values were longer than max_sort_length. Sorting used only the first 70 bytes
# Table having a variable-length string field and UTF16 encoding (2 bytes per char): # Table having a variable-length string field and UTF16 encoding (2 bytes per char):
create table t2(a varchar(100)) character set 'utf16'; create table t2(a varchar(100)) character set 'utf16';
insert into t2 values insert into t2 values
@@ -353,7 +353,7 @@ StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrzzz
StrStrStrStrStrStrStrStrStrStrStrStrStrStrStryyy StrStrStrStrStrStrStrStrStrStrStrStrStrStrStryyy
StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrxxx StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrxxx
Warnings: Warnings:
Warning 4203 3 values were longer than max_sort_length. Sorting used only the first 64 bytes Warning 4202 3 values were longer than max_sort_length. Sorting used only the first 64 bytes
# Table having text blobs # Table having text blobs
create table t3(a text, b mediumtext, c longtext) character set 'utf16'; create table t3(a text, b mediumtext, c longtext) character set 'utf16';
insert into t3 values insert into t3 values
@@ -370,7 +370,7 @@ TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText
TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText888 MediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMedium88 LongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLong88 TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText888 MediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMedium88 LongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLong88
TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText777 MediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMedium77 LongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLong77 TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText777 MediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMedium77 LongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLong77
Warnings: Warnings:
Warning 4203 3 values were longer than max_sort_length. Sorting used only the first 64 bytes Warning 4202 3 values were longer than max_sort_length. Sorting used only the first 64 bytes
select * from t3 order by b desc; select * from t3 order by b desc;
a b c a b c
shortString51 short777 short897 shortString51 short777 short897
@@ -379,7 +379,7 @@ TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText
TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText888 MediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMedium88 LongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLong88 TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText888 MediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMedium88 LongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLong88
TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText777 MediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMedium77 LongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLong77 TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText777 MediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMedium77 LongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLong77
Warnings: Warnings:
Warning 4203 3 values were longer than max_sort_length. Sorting used only the first 64 bytes Warning 4202 3 values were longer than max_sort_length. Sorting used only the first 64 bytes
select * from t3 order by coalesce(b) desc; select * from t3 order by coalesce(b) desc;
a b c a b c
shortString51 short777 short897 shortString51 short777 short897
@@ -388,7 +388,7 @@ TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText
TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText888 MediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMedium88 LongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLong88 TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText888 MediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMedium88 LongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLong88
TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText777 MediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMedium77 LongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLong77 TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText777 MediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMedium77 LongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLong77
Warnings: Warnings:
Warning 4203 3 values were longer than max_sort_length. Sorting used only the first 64 bytes Warning 4202 3 values were longer than max_sort_length. Sorting used only the first 64 bytes
select * from t3 order by c; select * from t3 order by c;
a b c a b c
TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText999 MediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMedium99 LongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLong99 TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText999 MediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMedium99 LongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLong99
@@ -397,7 +397,7 @@ TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText
shortString89 short123 short456 shortString89 short123 short456
shortString51 short777 short897 shortString51 short777 short897
Warnings: Warnings:
Warning 4203 3 values were longer than max_sort_length. Sorting used only the first 64 bytes Warning 4202 3 values were longer than max_sort_length. Sorting used only the first 64 bytes
select * from t3 order by c, a desc; select * from t3 order by c, a desc;
a b c a b c
TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText999 MediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMedium99 LongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLong99 TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText999 MediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMedium99 LongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLong99
@@ -406,7 +406,7 @@ TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText
shortString89 short123 short456 shortString89 short123 short456
shortString51 short777 short897 shortString51 short777 short897
Warnings: Warnings:
Warning 4203 6 values were longer than max_sort_length. Sorting used only the first 64 bytes Warning 4202 6 values were longer than max_sort_length. Sorting used only the first 64 bytes
# Packing of sort keys will be applied here: # Packing of sort keys will be applied here:
select * from t3 order by a, c, b; select * from t3 order by a, c, b;
a b c a b c
@@ -416,7 +416,7 @@ TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText
TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText888 MediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMedium88 LongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLong88 TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText888 MediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMedium88 LongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLong88
TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText777 MediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMedium77 LongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLong77 TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText777 MediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMedium77 LongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLong77
Warnings: Warnings:
Warning 4203 9 values were longer than max_sort_length. Sorting used only the first 64 bytes Warning 4202 9 values were longer than max_sort_length. Sorting used only the first 64 bytes
select * from t3 order by a; select * from t3 order by a;
a b c a b c
shortString51 short777 short897 shortString51 short777 short897
@@ -425,7 +425,7 @@ TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText
TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText888 MediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMedium88 LongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLong88 TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText888 MediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMedium88 LongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLong88
TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText777 MediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMedium77 LongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLong77 TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText777 MediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMediumMedium77 LongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLong77
Warnings: Warnings:
Warning 4203 3 values were longer than max_sort_length. Sorting used only the first 64 bytes Warning 4202 3 values were longer than max_sort_length. Sorting used only the first 64 bytes
# Test a prepared statement re-execution (expecting warnings at both executions) # Test a prepared statement re-execution (expecting warnings at both executions)
prepare stmt from "select * from t2 order by a"; prepare stmt from "select * from t2 order by a";
execute stmt; execute stmt;
@@ -436,7 +436,7 @@ StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrzzz
StrStrStrStrStrStrStrStrStrStrStrStrStrStrStryyy StrStrStrStrStrStrStrStrStrStrStrStrStrStrStryyy
StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrxxx StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrxxx
Warnings: Warnings:
Warning 4203 3 values were longer than max_sort_length. Sorting used only the first 64 bytes Warning 4202 3 values were longer than max_sort_length. Sorting used only the first 64 bytes
execute stmt; execute stmt;
a a
shortString51 shortString51
@@ -445,7 +445,7 @@ StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrzzz
StrStrStrStrStrStrStrStrStrStrStrStrStrStrStryyy StrStrStrStrStrStrStrStrStrStrStrStrStrStrStryyy
StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrxxx StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrxxx
Warnings: Warnings:
Warning 4203 3 values were longer than max_sort_length. Sorting used only the first 64 bytes Warning 4202 3 values were longer than max_sort_length. Sorting used only the first 64 bytes
# Test a stored procedure # Test a stored procedure
create procedure p1() select * from t2 order by a; create procedure p1() select * from t2 order by a;
call p1(); call p1();
@@ -456,7 +456,7 @@ StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrzzz
StrStrStrStrStrStrStrStrStrStrStrStrStrStrStryyy StrStrStrStrStrStrStrStrStrStrStrStrStrStrStryyy
StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrxxx StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrxxx
Warnings: Warnings:
Warning 4203 3 values were longer than max_sort_length. Sorting used only the first 64 bytes Warning 4202 3 values were longer than max_sort_length. Sorting used only the first 64 bytes
call p1(); call p1();
a a
shortString51 shortString51
@@ -465,7 +465,7 @@ StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrzzz
StrStrStrStrStrStrStrStrStrStrStrStrStrStrStryyy StrStrStrStrStrStrStrStrStrStrStrStrStrStrStryyy
StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrxxx StrStrStrStrStrStrStrStrStrStrStrStrStrStrStrxxx
Warnings: Warnings:
Warning 4203 3 values were longer than max_sort_length. Sorting used only the first 64 bytes Warning 4202 3 values were longer than max_sort_length. Sorting used only the first 64 bytes
drop procedure p1; drop procedure p1;
# Test a stored function # Test a stored function
create function f1 () returns char(100) return (select a from t1 order by a limit 1); create function f1 () returns char(100) return (select a from t1 order by a limit 1);
@@ -477,7 +477,7 @@ ShortStr1
ShortStr1 ShortStr1
ShortStr1 ShortStr1
Warnings: Warnings:
Warning 4203 15 values were longer than max_sort_length. Sorting used only the first 64 bytes Warning 4202 15 values were longer than max_sort_length. Sorting used only the first 64 bytes
# Test a view # Test a view
create view v1 as select f1() as f1_res from t1 order by f1_res; create view v1 as select f1() as f1_res from t1 order by f1_res;
select * from v1; select * from v1;
@@ -488,7 +488,7 @@ ShortStr1
ShortStr1 ShortStr1
ShortStr1 ShortStr1
Warnings: Warnings:
Warning 4203 30 values were longer than max_sort_length. Sorting used only the first 64 bytes Warning 4202 30 values were longer than max_sort_length. Sorting used only the first 64 bytes
drop function f1; drop function f1;
drop view v1; drop view v1;
drop table t1, t2, t3; drop table t1, t2, t3;
@@ -501,13 +501,13 @@ create table t1 (a int, b varchar(1024));
insert into t1 values (1,repeat('x',513)), (2,repeat('y',650)); insert into t1 values (1,repeat('x',513)), (2,repeat('y',650));
insert into t1 select * from t1 order by b limit 1; insert into t1 select * from t1 order by b limit 1;
Warnings: Warnings:
Warning 4203 2 values were longer than max_sort_length. Sorting used only the first 70 bytes Warning 4202 2 values were longer than max_sort_length. Sorting used only the first 70 bytes
update t1 set a = 3 order by b limit 1; update t1 set a = 3 order by b limit 1;
Warnings: Warnings:
Warning 4203 3 values were longer than max_sort_length. Sorting used only the first 70 bytes Warning 4202 3 values were longer than max_sort_length. Sorting used only the first 70 bytes
delete from t1 where a < 3 order by b; delete from t1 where a < 3 order by b;
Warnings: Warnings:
Warning 4203 2 values were longer than max_sort_length. Sorting used only the first 70 bytes Warning 4202 2 values were longer than max_sort_length. Sorting used only the first 70 bytes
# Make sure warnings from previous statements do not overflow to next ones # Make sure warnings from previous statements do not overflow to next ones
select a from t1; select a from t1;
a a
@@ -521,7 +521,7 @@ create table t1 (a varchar(1024)) engine=innodb;
insert into t1 values (repeat('a',1000)),(repeat('b',1000)); insert into t1 values (repeat('a',1000)),(repeat('b',1000));
insert into t1 (a) select a from t1 order by a; insert into t1 (a) select a from t1 order by a;
Warnings: Warnings:
Warning 4203 2 values were longer than max_sort_length. Sorting used only the first 70 bytes Warning 4202 2 values were longer than max_sort_length. Sorting used only the first 70 bytes
drop table t1; drop table t1;
connection default; connection default;
disconnect test_con1; disconnect test_con1;

View File

@@ -92,7 +92,7 @@ x left(b, 10) left(v, 10)
50 zzzzzzzzzz zzzzzzzzzz 50 zzzzzzzzzz zzzzzzzzzz
56 zzzzzzzzzz zzzzzzzzzz 56 zzzzzzzzzz zzzzzzzzzz
Warnings: Warnings:
Warning 4203 29 values were longer than max_sort_length. Sorting used only the first 1024 bytes Warning 4202 29 values were longer than max_sort_length. Sorting used only the first 1024 bytes
update t1 set b= 'bar' where v > 'a' limit 20; update t1 set b= 'bar' where v > 'a' limit 20;
drop table t1; drop table t1;
# Cover return_top_record() in ha_partition::handle_ordered_index_scan() # Cover return_top_record() in ha_partition::handle_ordered_index_scan()

View File

@@ -258,7 +258,7 @@ x left(y, 4) length(y) check_row(row_start, row_end)
1 LONG 8192 HISTORICAL ROW 1 LONG 8192 HISTORICAL ROW
2 LONG 8192 CURRENT ROW 2 LONG 8192 CURRENT ROW
Warnings: Warnings:
Warning 4203 2 values were longer than max_sort_length. Sorting used only the first 1024 bytes Warning 4202 2 values were longer than max_sort_length. Sorting used only the first 1024 bytes
update t1 set y= 'SHORT'; update t1 set y= 'SHORT';
select x, left(y, 4), length(y), check_row(row_start, row_end) from t1 for system_time all order by x, y; select x, left(y, 4), length(y), check_row(row_start, row_end) from t1 for system_time all order by x, y;
x left(y, 4) length(y) check_row(row_start, row_end) x left(y, 4) length(y) check_row(row_start, row_end)
@@ -266,7 +266,7 @@ x left(y, 4) length(y) check_row(row_start, row_end)
2 LONG 8192 HISTORICAL ROW 2 LONG 8192 HISTORICAL ROW
2 SHOR 5 CURRENT ROW 2 SHOR 5 CURRENT ROW
Warnings: Warnings:
Warning 4203 2 values were longer than max_sort_length. Sorting used only the first 1024 bytes Warning 4202 2 values were longer than max_sort_length. Sorting used only the first 1024 bytes
drop tables t1; drop tables t1;
### Issue tempesta-tech/mariadb#365, bug 7 (duplicate of historical row) ### Issue tempesta-tech/mariadb#365, bug 7 (duplicate of historical row)
create or replace table t1 (a int primary key, b int) create or replace table t1 (a int primary key, b int)

View File

@@ -12266,8 +12266,6 @@ ER_JSON_SCHEMA_KEYWORD_UNSUPPORTED
sw "%s neno kuu halitumiki" sw "%s neno kuu halitumiki"
ER_JSON_NO_VARIABLE_SCHEMA ER_JSON_NO_VARIABLE_SCHEMA
eng "Variable schema is not supported." eng "Variable schema is not supported."
ER_PSEUDO_THREAD_ID_OVERWRITE
eng "Pseudo thread id should not be modified by the client as it will be overwritten"
ER_SEQUENCE_TABLE_HAS_WRONG_NUMBER_OF_COLUMNS ER_SEQUENCE_TABLE_HAS_WRONG_NUMBER_OF_COLUMNS
eng "Wrong number of columns" eng "Wrong number of columns"
ER_SEQUENCE_TABLE_CANNOT_HAVE_ANY_KEYS ER_SEQUENCE_TABLE_CANNOT_HAVE_ANY_KEYS
@@ -12290,10 +12288,12 @@ ER_VECTOR_BINARY_FORMAT_INVALID
eng "Invalid binary vector format. Must use IEEE standard float representation in little-endian format. Use VEC_FromText() to generate it." eng "Invalid binary vector format. Must use IEEE standard float representation in little-endian format. Use VEC_FromText() to generate it."
ER_VECTOR_FORMAT_INVALID ER_VECTOR_FORMAT_INVALID
eng "Invalid vector format at offset: %d for '%-.100s'. Must be a valid JSON array of numbers." eng "Invalid vector format at offset: %d for '%-.100s'. Must be a valid JSON array of numbers."
ER_PSEUDO_THREAD_ID_OVERWRITE
eng "Pseudo thread id should not be modified by the client as it will be overwritten"
ER_VEC_DISTANCE_TYPE ER_VEC_DISTANCE_TYPE
eng "Cannot determine distance type for VEC_DISTANCE, index is not found" eng "Cannot determine distance type for VEC_DISTANCE, index is not found"
WARN_INDEX_HINTS_IGNORED WARN_INDEX_HINTS_IGNORED
eng "Index hints are ignored because they are incompatible with RETURNING clause" eng "Index hints are ignored because they are incompatible with RETURNING clause"
ukr "Підказки по використанню индексів ігноруются тому що вони несумісні з RETURNING" ukr "Підказки по використанню индексів ігноруются тому що вони несумісні з RETURNING"
ER_SIGNAL_SKIP_ROW_FROM_TRIGGER ER_SIGNAL_SKIP_ROW_FROM_TRIGGER
eng "The row is skipped by a trigger implementation" eng "The row is skipped by a trigger implementation"