Changes the generated code to always use ~S, so that there is no accidental (or mistaken) interpolation and escaping. This makes sense semantically, because the user writes an SQL query, so nothing about it should be interpreted as in Elixir. For interpolation we already have a specific syntax.
Closes https://github.com/elixir-explorer/explorer/issues/949.
Changes the generated code to always use
~S
, so that there is no accidental (or mistaken) interpolation and escaping. This makes sense semantically, because the user writes an SQL query, so nothing about it should be interpreted as in Elixir. For interpolation we already have a specific syntax.