Revision 8f90f5a20c338bb67cc361361cf8cb4d8ae19464
Committed on 14/12/2025 11:40 am by
Zohaib Sibte Hassan <zohaib@sibte.pk> [GitHub Diff]
Fix prepared statement string params for SQLite TEXT comparison
Return text-type MySQL parameters (STRING, VARCHAR, etc.) as Go
strings instead of []byte. SQLite TEXT column comparisons fail when
comparing against BLOB-typed []byte values, causing queries like
"SELECT name FROM sqlite_master WHERE name = ?" to return no rows
even when the table exists.
This fixes TestClusterReplication which was failing because the
table name parameter was passed as []byte.
???? Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>