Commit 5ea3382f authored by unknown's avatar unknown
Browse files

Disabled ps_protocol for two statements.

parent 91b1630d
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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;