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 <
[email protected]>