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
SQL queries in the aggregator must use bind parameters as best practice - please see http://initd.org/psycopg/docs/usage.html#the-problem-with-the-query-parameters. Data should be passed as an tuple arg to execute(), not interpolated in the string. This is already done for some queries, but not all.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
SQL queries in the aggregator must use bind parameters as best practice - please see http://initd.org/psycopg/docs/usage.html#the-problem-with-the-query-parameters. Data should be passed as an tuple arg to execute(), not interpolated in the string. This is already done for some queries, but not all.
The text was updated successfully, but these errors were encountered: