1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +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

@@ -258,7 +258,7 @@ x left(y, 4) length(y) check_row(row_start, row_end)
1 LONG 8192 HISTORICAL ROW
2 LONG 8192 CURRENT ROW
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';
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)
@@ -266,7 +266,7 @@ x left(y, 4) length(y) check_row(row_start, row_end)
2 LONG 8192 HISTORICAL ROW
2 SHOR 5 CURRENT ROW
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;
### Issue tempesta-tech/mariadb#365, bug 7 (duplicate of historical row)
create or replace table t1 (a int primary key, b int)