diff --git a/redash/query_runner/mssql.py b/redash/query_runner/mssql.py index f3312601ad..1abf0f0df5 100644 --- a/redash/query_runner/mssql.py +++ b/redash/query_runner/mssql.py @@ -97,7 +97,7 @@ def _get_tables(self, schema): for row in results['rows']: if row['table_schema'] != self.configuration['db']: - table_name = '{}.{}'.format(row['table_schema'], row['table_name']) + table_name = u'{}.{}'.format(row['table_schema'], row['table_name']) else: table_name = row['table_name']