Skip to content

Commit

Permalink
Disable auto limit for mssql query runner (getredash#5777)
Browse files Browse the repository at this point in the history
  • Loading branch information
susodapop authored Jul 2, 2022
1 parent cabe333 commit b2cc42e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions redash/query_runner/mssql_odbc.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@ def name(cls):
@classmethod
def type(cls):
return "mssql_odbc"

@property
def supports_auto_limit(self):
return False

def _get_tables(self, schema):
query = """
Expand Down

0 comments on commit b2cc42e

Please sign in to comment.