1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

MDEV-27691: make working view-protocol

Update tests for version 10.6
This commit is contained in:
Lena Startseva
2022-09-27 10:55:22 +07:00
parent f8f25b472e
commit a9962580ab
17 changed files with 66 additions and 5 deletions

View File

@ -18,9 +18,12 @@ select min(name),min(concat("*",name,"*")),max(name),max(concat("*",name,"*")) f
select * from t2 order by name;
select concat("*",name,"*") from t2 order by 1;
select min(name),min(concat("*",name,"*")),max(name),max(concat("*",name,"*")) from t2;
#check after fix MDEV-29601
--disable_service_connection
select name from t1 where name between '<27>' and '<27>';
select name from t2 where name between '<27>' and '<27>';
select name from t2 where name between '<27>' and '<27>';
--enable_service_connection
drop table t1,t2;