You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tests: add DML analog for Issue #161 (no stored procedure)
The existing Issue161_SLongToVarcharViaStoredProcedure test is skipped
on Firebird 6 because of a pre-existing FB6 parameterized-SP
regression (SKIP_ON_FIREBIRD6), which means the fix is not exercised
on the FB6 matrix jobs.
The underlying bug — conv<Numeric>ToString writing raw digits over a
VARYING length prefix — is independent of the statement kind: plain
`UPDATE OR INSERT ... VALUES (?, ?) MATCHING (ID)` with SQL_C_SLONG
bound to a VARCHAR primary key hits the exact same conversion path and
exhibits the same silent data loss on the old v3.0.1.21 driver (500
rows sent, 11 stored, one with embedded NUL byte).
Add a DML-only analog of the SP test. It runs on every server
version in the matrix including FB 6, closing the gap left by the
SP test's SKIP_ON_FIREBIRD6.
0 commit comments