History log of /php-src/ext/pdo_mysql/tests/pdo_mysql_prepare_emulated_binary.phpt (Results 1 – 2 of 2)
Revision Date Author Comments
# cba92bea 24-Sep-2024 Matteo Beccati

PDO_MYSQL: Properly quote binary strings

Closes GH-15949


# 93c68cae 18-Sep-2024 Luís Cobucci

Reproduce unexpected MySQL warnings for binary values

The prepared statement emulation layer is handling binary content in a
way that creates warnings in MySQL.

When analysing t

Reproduce unexpected MySQL warnings for binary values

The prepared statement emulation layer is handling binary content in a
way that creates warnings in MySQL.

When analysing the query logs, we saw that the content sent to the
server is missing `0x5C` characters when the using emulated prepares.

This introduces a minimal test case that reproduces the issue to aid the
solution.

More info: https://github.com/doctrine/dbal/pull/6522#issuecomment-2340939347

Signed-off-by: Luís Cobucci <lcobucci@gmail.com>

show more ...