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
Right now the code is generated like this: sql.unsafe(query, [])
To support prepared statements it must be generated like this: sql.unsafe(query, [], { prepare: true })
In general, prepared statements boosts performance of query execution - https://www.postgresql.org/docs/current/sql-prepare.html