Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed _build_query_args method when extra_query_args are passed #51

Merged
merged 1 commit into from
May 2, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion esridump/dumper.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def _build_query_args(self, query_args=None):

override_where = override_args.get('where')
requested_where = query_args.get('where')
if override_where and requested_where != '1=1':
if override_where and requested_where and requested_where != '1=1':
# AND the where args together if the user is trying to override
# the where param and we're trying to get 'all the rows'
override_args['where'] = '({}) AND ({})'.format(
Expand Down