We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
before the query get saved the placeholder for the prepared statement should be replaced by the value. Otherwise postgres is failing with:
Job ActiveJob::QueueAdapters::DelayedJobAdapter::JobWrapper (id=3597) FAILED (1 prior attempts) with ActionView::Template::Error: PG::ProtocolViolation: ERROR: bind message supplies 0 parameters, but prepared statement "" requires 1
so for example for where clause:
where: '"investments"."project_id" = $1'
should be
where: '"investments"."project_id" = 2'
The text was updated successfully, but these errors were encountered:
itschn
No branches or pull requests
before the query get saved the placeholder for the prepared statement should be replaced by the value. Otherwise postgres is failing with:
so for example for where clause:
should be
The text was updated successfully, but these errors were encountered: