john-bodley commented on a change in pull request #5295: [WIP] Fix sqllab limit
regex
URL:
https://github.com/apache/incubator-superset/pull/5295#discussion_r198536534
##########
File path: superset/db_engine_specs.py
##########
@@ -114,23 +114,31 @@ def get_limit_from_sql(cls, sql):
(?ix) # case insensitive, verbose
\s+ # whitespace
LIMIT\s+(\d+) # LIMIT $ROWS
- ;? # optional semi-colon
- (\s|;)*$ # remove trailing spaces tabs or semicolons
+ .*$ # everything else
Review comment:
I think this regex will fail for queries like (albeit being somewhat
unusual):
SELECT ‘LIMIT 10’
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]