Skip to content
This repository has been archived by the owner on Oct 14, 2024. It is now read-only.

Commit

Permalink
Merge pull request getredash#1179 from kitsuyui/fix/not-shown-left-pane
Browse files Browse the repository at this point in the history
Fix: schema not loading when table name has unicode characters
  • Loading branch information
arikfr authored Jul 11, 2016
2 parents 3be3c02 + 490883e commit d9938d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redash/query_runner/mssql.py
Original file line number Diff line number Diff line change
Expand Up @@ -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']

Expand Down

0 comments on commit d9938d8

Please sign in to comment.