Skip to content

Commit

Permalink
Fixed Clickhouse column name encoding problem (#4682)
Browse files Browse the repository at this point in the history
  • Loading branch information
erels authored Mar 1, 2020
1 parent 4b94a5c commit 668403c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redash/query_runner/clickhouse.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def _send_query(self, data, stream=False):
verify = self.configuration.get("verify", True)
r = requests.post(
url,
data=data,
data=data.encode("utf-8","ignore"),
stream=stream,
timeout=self.configuration.get("timeout", 30),
params={
Expand Down

0 comments on commit 668403c

Please sign in to comment.