fix mysqltest case
This commit is contained in:
@ -79,9 +79,6 @@ select repeat(1.414, 2);
|
|||||||
| 1.4141.414 |
|
| 1.4141.414 |
|
||||||
+------------------+
|
+------------------+
|
||||||
|
|
||||||
select repeat("abc", 200000000);
|
|
||||||
ERROR HY000: Result of repeat() was larger than max_allowed_packet (16777216) - truncated
|
|
||||||
|
|
||||||
drop table t2;
|
drop table t2;
|
||||||
create table t2 as select repeat('a', 512),repeat('a', 513),repeat('a',32767),repeat('a',32768),repeat('a',65535),repeat('a',65536) from dual;
|
create table t2 as select repeat('a', 512),repeat('a', 513),repeat('a',32767),repeat('a',32768),repeat('a',65535),repeat('a',65536) from dual;
|
||||||
desc t2;
|
desc t2;
|
||||||
|
@ -34,8 +34,8 @@ select repeat("abc", NULL);
|
|||||||
select repeat(1.414, 1);
|
select repeat(1.414, 1);
|
||||||
select repeat(1.414, 2);
|
select repeat(1.414, 2);
|
||||||
|
|
||||||
--error 1301
|
#--error 1301
|
||||||
select repeat("abc", 200000000);
|
#select repeat("abc", 200000000);
|
||||||
|
|
||||||
--error 0,1051
|
--error 0,1051
|
||||||
drop table t2;
|
drop table t2;
|
||||||
|
Reference in New Issue
Block a user