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
Use pre-Explain SQL for WithoutQueryVariables (#15)
The current implementation of `WithoutQueryVariables` substitutes `?` for any query variables and
calls `tx.Dialector.Explain`, which can result in a lot of string allocations. This implementation
avoids the substitution and uses whatever the default representation of the query parameters is for
the SQL dialect.
0 commit comments