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
I try new encode/databases and SQLAChemy 1.4 everything work fine, except
sql = select([TABLE]).where(TABLE.c.id.in_([1,3,4])) print(databases.fetch_all(sql))
it produced error
psycopg2.errors.SyntaxError: syntax error at or near "[" LINE 3: WHERE TABLE.id IN ([POSTCOMPILE_1])
But I can use this query with pure SQLAChemy 1.4 core
sql = select([TABLE]).where(TABLE.c.id.in_([1,3,4])) async with engine.connect() as conn: res = await conn.execute(sql) print(res.fetchall())
The text was updated successfully, but these errors were encountered:
@mrchoke Thanks for reporting this. You're right, this was changed in sqlalchemy 1.4 here
Sorry, something went wrong.
render_postcompile
Successfully merging a pull request may close this issue.
I try new encode/databases and SQLAChemy 1.4 everything work fine, except
it produced error
But I can use this query with pure SQLAChemy 1.4 core
The text was updated successfully, but these errors were encountered: