Skip to content

Commit 90d6643

Browse files
committed
Minor bug fix: BETWEEN Operator
1 parent cfb5d29 commit 90d6643

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bigquery/query_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ def _render_condition(field, field_type, comparators):
228228
)
229229
elif isinstance(value, (tuple, list, set)) and len(value) != 2:
230230
logging.warn('Invalid condition passed in: %s' % condition)
231-
value = "(" + value + ")"
231+
232232
else:
233233
value = _render_condition_value(value, field_type)
234234

0 commit comments

Comments
 (0)