Skip to content

Commit

Permalink
Merge pull request #6 from maxmzkr/user-needed-in-cursor
Browse files Browse the repository at this point in the history
User needed in cursor
  • Loading branch information
maxmzkr authored Sep 20, 2016
2 parents 471583d + 8900abf commit b9aa053
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ibis/impala/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def _new_cursor(self):
self._connections[id(con)] = con

# make sure the connection works
cursor = con.cursor(convert_types=True)
cursor = con.cursor(convert_types=True, user=params.get('user'))
cursor.ping()

wrapper = ImpalaCursor(cursor, self, con, self.database,
Expand Down

0 comments on commit b9aa053

Please sign in to comment.