1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Disabled ps_protocol for two statements.

This commit is contained in:
jani@ua141d10.elisa.omakaista.fi
2005-11-03 20:29:21 +02:00
parent c4aa14fad7
commit fcea95c2e5

View File

@@ -1056,11 +1056,13 @@ create table t (d decimal(0,10));
#
create table t1 (c1 decimal(64));
--disable_ps_protocol
insert into t1 values(
89000000000000000000000000000000000000000000000000000000000000000000000000000000000000000);
insert into t1 values(
99999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999 *
99999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999);
--enable_ps_protocol
insert into t1 values(1e100);
select * from t1;
drop table t1;