text题目求助

insert into text_table values (4,'QWJGZSZR845UVNMB73Y5IN42FLIJM0AWR6BBCX7LKS4VWI3A9XP6R7ERM3WXAQJ671T0QICBQVL693KA00Z1KSLADFZ3SVHCLRX9Z32EOCOXA7FK9VW7N6BPY6H92X6YMPP40ECEHQI5JWF4M6WOY8KNW54J78YY2WY0KVO40JF1XQGGULHRLTCB7RZMNBVRLQPE46NH8S8NW5SQ026CGW4E0K927A…

  • failed to receive response from observer. reason=Failed to receive from server. poll return POLLHUP=16 or POLLERR=str(event & select.POLLERR)
    failed to receive response from observer. reason=Failed to receive from server. poll return POLLHUP=16 or POLLERR=str(event & select.POLLERR)
    – below are some requests executed before(partial) –
    – init data
    create table text_table(id int, info text);
    insert into text_table values (1,‘this is a very very long string’);
    insert into text_table values (2,‘this is a very very long string2’);
    insert into text_table values (3,‘this is a very very long string3’);
    – delete
    delete from text_table where id=1;
    select * from text_table;
    – update
    UPDATE text_table set info=‘a tmp data’ where id = 2;
    select * from text_table;
    想请问一下text这个测试为什么断连了,在本地测试是正常的,是数据被截断了吗?超过4096字节是要截断还是failure呢?
3 个赞

@辞霜

2 个赞

看看日志

学习学习。