1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Updated main.alias test to fix max_length

The test will work after libmariadb has been updated to return correct
max_length for prepared statements
This commit is contained in:
Monty
2021-09-21 14:03:24 +03:00
parent a584117c0c
commit d6bddfca22
2 changed files with 7 additions and 7 deletions

View File

@ -223,16 +223,16 @@ disconnect c1;
#
create or replace table t1 (a int);
create or replace table t2 (b int);
insert into t1 values(1<<30),(1<<29);
insert into t1 values(111111111),(-2147483648);
insert into t2 values(1),(2);
select t1.a as a1 from t1 as t1,t2 order by t2.b,t1.a;
Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
def test t1 t1 a a1 3 11 10 Y 32768 0 63
def test t1 t1 a a1 3 11 11 Y 32768 0 63
a1
536870912
1073741824
536870912
1073741824
-2147483648
111111111
-2147483648
111111111
drop table t1,t2;
#
# End of 10.4 tests

View File

@ -231,7 +231,7 @@ disconnect c1;
--echo #
create or replace table t1 (a int);
create or replace table t2 (b int);
insert into t1 values(1<<30),(1<<29);
insert into t1 values(111111111),(-2147483648);
insert into t2 values(1),(2);
--enable_metadata
select t1.a as a1 from t1 as t1,t2 order by t2.b,t1.a;