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
{{ message }}
This repository has been archived by the owner on Dec 23, 2017. It is now read-only.
Every parameter is being included when the SQL string is generated. This causes the SQL string to be longer than necessary, bloating the plan cache, and potentially requiring more effort when hunting for a plan. It also makes reading and using the output SQL more cumbersome.
The text was updated successfully, but these errors were encountered:
That is where I think it needs to happen. There is an iteration for implicit and explicit parameters. The check should be in the implicit parameter list. It could potentially in the explicit parameter list but I think that might create more problems than it would help to solve.
Currently the parameter is ignored by the Where Filter factory, but the parameter is not removed from the query parameters. That is the change that would be made.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Every parameter is being included when the SQL string is generated. This causes the SQL string to be longer than necessary, bloating the plan cache, and potentially requiring more effort when hunting for a plan. It also makes reading and using the output SQL more cumbersome.
The text was updated successfully, but these errors were encountered: