History log of /PHP-7.4/ext/mysqli/tests/mysqli_real_connect_compression_error.phpt (Results 1 – 3 of 3)
Revision Date Author Comments
# 77f43e48 18-Sep-2020 Nikita Popov

Use MyISAM engine for new test

Travis on 7.3 is showing this error:

> The size of BLOB/TEXT data inserted in one transaction is greater
> than 10% of redo log size. Increase the

Use MyISAM engine for new test

Travis on 7.3 is showing this error:

> The size of BLOB/TEXT data inserted in one transaction is greater
> than 10% of redo log size. Increase the redo log size using
> innodb_log_file_size.

Force MyISAM engine to avoid this.

show more ...


# ecd9c42f 16-Sep-2020 Nikita Popov

Fix bug #80107: Handling of large compressed packets

There's two layers of packet splitting going on. First, packets
need to be split into having a payload of exactly 2^24-1 bytes or

Fix bug #80107: Handling of large compressed packets

There's two layers of packet splitting going on. First, packets
need to be split into having a payload of exactly 2^24-1 bytes or
being the last packet. If the split packet has size between 2^24-5
and 2^24-1 bytes, the compressed packets also needs to be split,
though the choice of split doesn't matter here. I'm splitting off
the first 8192 bytes, as that's what I observe libmysqlclient to be
doing.

show more ...


# c7ceebc4 15-Sep-2020 Máté Kocsis

Bug #80107 Add test for mysqli_query() fails for ~16 MB long query when compression is enabled