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
with_hint
with_hint currently seems to be not supported. The following snippet raises an assertion error:
from sqlalchemy import table, column, select import ibm_db_sa users = table("users", column("a")) dialect = ibm_db_sa.dialect() q = ( select(users) .select_from(users) .where(users.c.a == 1) .with_hint( users, "FOR SYSTEM_TIME BETWEEN '0001-01-01-00.00.00.000000' AND '9999-12-31-00.00.00.000000'", ) ) q_hist = q.compile(dialect=dialect) print(q_hist) assert "FOR SYSTEM_TIME BETWEEN" in str(q_hist)
Is there any known workaround or plan to implement it?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
with_hint
currently seems to be not supported.The following snippet raises an assertion error:
Is there any known workaround or plan to implement it?
The text was updated successfully, but these errors were encountered: