Replies: 1 comment 17 replies
-
Hi @bloukanov , thanks for the suggestion! For now we only support single select query. Adding support for CTE and others like view creation will bring challenge to the query partition part since we need to figure out which query should be partitioned, and we also need to support non-selection queries. We will look into the need and possible solutions of this. |
Beta Was this translation helpful? Give feedback.
17 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi there,
Loving the package so far. I'd like to now see if we can use it for larger queries with intermediary tables. But when I try to do a single
select
with any CTE's (https://docs.microsoft.com/en-us/sql/t-sql/queries/with-common-table-expression-transact-sql?view=sql-server-ver15), it fails with the error:RuntimeError: Token error: 'Incorrect syntax near the keyword 'WITH'.' on server X executing on line 1 (code: 156, state: 1, class: 15)
The same select works in pandas read_sql. Would it be possible to make this work or no?
Beta Was this translation helpful? Give feedback.
All reactions