KarimHassan edited a comment on issue #7317:
URL: https://github.com/apache/superset/issues/7317#issuecomment-900262628


   In order to make it work you need to add the following condition to 
superset/db_engine_specs/mssql.py
   
   >  @classmethod
   >     def fetch_data(
   >         cls, cursor: Any, limit: Optional[int] = None
   >     ) -> List[Tuple[Any, ...]]:
           **_if not cursor.description:
                return []_**
   >         data = super().fetch_data(cursor, limit)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to