-
Notifications
You must be signed in to change notification settings - Fork 14.1k
New issue
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
Common Table Expressions (CTE's) do not work for Microsoft SQL Server database #8074
Comments
Issue-Label Bot is automatically applying the label Links: app homepage, dashboard and code for this bot. |
Reproduced on master; running the same on sqlite works just fine. Will take a closer look. |
Looking into this, it turns out that the bug stems from the fact that MSSQL uses the non-ANSI TOP syntax for limiting row count (SQL Lab sticks on a limit on each query, which is currently causing this problem). I'm sure we can work around this issue somehow, e.g. by disabling auto-limiting for non-ANSI DBs. However, I don't expect non-ANSI functionality to be as highly prioritized as ANSI SQL compliant syntax, i.e. expect some functionality in Superset to be less comprehensive for MSSQL than e.g. Postgres. We'll be sure to add a warning in the docs for this once we establish to what extent non-standard syntax is supported. |
AFAIK, only SQL Server and Access use the
I totally understand and agree with this. I avoid non-ANSI SQL functionality in any database like plague and lack of support for non-ANSI features in tools hasn't caused me any pain yet!
That would be great! |
Please take a look at my PR that fixes the immediate problem with CTEs on MSSQL (apparently this should also fix the same problem on DB2, Oracle and Teradata). Adding full support for limits on non-ANSI engines is not something I feel an immediate urge to do, and quite frankly I don't want to encourage DB vendors to procrastinate on moving away from bespoke syntax. But anyway, let me know if this is ok for your use case. |
@villebro I am currently unable to test the fix. The docker environment for development fails to initialize: Step 13/23 : RUN pip install --upgrade setuptools pip && pip install -r requirements.txt -r requirements-dev.txt -r requirements-extra.txt && rm -rf /root/.cache/pip
---> Running in 757208a956a6
Collecting setuptools
Downloading https://files.pythonhosted.org/packages/b2/86/095d2f7829badc207c893dd4ac767e871f6cd547145df797ea26baea4e2e/setuptools-41.2.0-py2.py3-none-any.whl (576kB)
Collecting pip
Downloading https://files.pythonhosted.org/packages/8d/07/f7d7ced2f97ca3098c16565efbe6b15fafcba53e8d9bdb431e09140514b0/pip-19.2.2-py2.py3-none-any.whl (1.4MB)
Installing collected packages: setuptools, pip
Found existing installation: setuptools 41.0.1
Uninstalling setuptools-41.0.1:
ERROR: Could not install packages due to an EnvironmentError: [Errno 39] Directory not empty: 'packaging'
WARNING: You are using pip version 19.1.1, however version 19.2.2 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
ERROR: Service 'superset' failed to build: The command '/bin/sh -c pip install --upgrade setuptools pip && pip install -r requirements.txt -r requirements-dev.txt -r requirements-extra.txt && rm -rf /root/.cache/pip' returned a non-zero code: 1 Do you have any suggestions on what might be causing this? Thanks! |
Unfortunately I an not that familiar with how the docker setup under contrib works (we use a custom Dockerfile in our env). But seems like rebuilding from scratch should help. |
@villebro - I was able to test this and can confirm that everything works as expected. The test CTE as well as CTEs fetching records from the database work. A couple of things to note:
|
If you check the diff, I added a warning about using CTEs on non-ANSIs. Btw, I'm working on something that might improve CTE support on all engines and should fix this problem on non-ANSIs, too, but we'll see how that works out. But in the meantime this is probably the best compromise I can offer. |
Sounds like a plan! BTW, another tab where a user can enter custom SQL is |
The query under data source is what is created when you click explore in SQL Lab. What I'm currently tinkering with is adding full CTE support, i.e. being able to write a CTE in SQL Lab and then using that as a data source in charts. Having to create a view is an inconvenient step, and being able to bypass that should make data exploration slightly easier. |
Definitely an inconvenience that I am dealing with right now but would have preferred not to!
So this sounds fantastic! Thank you! |
Looking more closely at this problem, it seems MSSQL is one of the few engines that doesn't support wrapping CTEs in subqueries (even Oracle supports this). Furthermore, most engines do equal predicate pushdown for CTEs and subqueries, which means that wrapping SQL Lab queries in CTEs in most cases wouldn't have a significant positive performance impact (on Postgres 11 and below CTEs actually perform worse than subqueries!). As this problem seems to be mostly an MSSQL problem, I think I'll leave this on the backlog for now, as making this work correctly would require a rather significant development effort that's difficult to justify given other more pressing issues/features. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. For admin, please label this issue |
* Fix for handling regular CTE queries with MSSQL,#8074 * Moved the get_cte_query function from mssql.py to base.py for using irrespetcive of dbengine * Fix for handling regular CTE queries with MSSQL,#8074 * Moved the get_cte_query function from mssql.py to base.py for using irrespetcive of dbengine * Unit test added for the db engine CTE SQL parsing. Unit test added for the db engine CTE SQL parsing. Removed additional spaces from the CTE parsing SQL generation. * implement in sqla model * lint + cleanup Co-authored-by: Ville Brofeldt <[email protected]>
@abhinavsood please check #18746 which should fix this issue |
Problem
Common Table Expressions (CTE) queries are not working as expected in SQL Lab against SQL Server databases. These are queries written using the
WITH
clause.Steps to Reproduce
Start superset using:
Add a SQL Server database and tables in
Sources
.Make sure to place a check for
Allow DML
and ensure that it is selected and set to True.Navigate to SQL Lab. Run the following query:
Expected Result
Observed Result
The following error message is seen:
System and Environment Details
Database:
Microsoft SQL Server 2017
Operating System:
Red Hat Enterprise Linux 7 x86_64
Python:
Python 3.6.7
(Anaconda Python)Superset:
Other packages:
Additional Notes
The query runs as expected against the same database:
Microsoft SQL Server Management Studio 17
tsql -S <FQDN>
and then executing the query)The query runs as expected against a PostGreSQL database through SQL Lab.
The text was updated successfully, but these errors were encountered: