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
We currently have places where we don't use prepared statements for queries.
This could lead to bugs if Display and ToSql implementations for the struct are different, however this is not the case at the moment.
Change all remaining queries to use prepared statement parameters
The text was updated successfully, but these errors were encountered:
There are places that remain which don't use parameters from a prepared statement and instead integrate the values directly into the query.
This will be changed with AIP#61 as a alterations of the code in the places where this happens is needed.
Example of such place is sentry/src/db/event_aggregate.rs:
We currently have places where we don't use prepared statements for queries.
This could lead to bugs if
Display
andToSql
implementations for the struct are different, however this is not the case at the moment.The text was updated successfully, but these errors were encountered: