Skip to content

Commit

Permalink
Fixes issue #5622 (#5623)
Browse files Browse the repository at this point in the history
  • Loading branch information
Limits0x authored Oct 18, 2021
1 parent 143d22d commit 39ca71c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redash/query_runner/sqlite.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def __init__(self, configuration):

def _get_tables(self, schema):
query_table = "select tbl_name from sqlite_master where type='table'"
query_columns = "PRAGMA table_info(%s)"
query_columns = "PRAGMA table_info(\"%s\")"

results, error = self.run_query(query_table, None)

Expand Down

0 comments on commit 39ca71c

Please sign in to comment.