Skip to content

Commit

Permalink
Fix type issue
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbachhuber committed Dec 12, 2024
1 parent fa3a13b commit 91c5bcc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -759,7 +759,7 @@ def test_query_runner_with_data_warehouse_series_expected_query(self):

# Assert the expected join condition in the clickhouse SQL
expected_join_condition = f"and(equals(events.team_id, {query_runner.count_query_runner.team.id}), equals(event, %(hogql_val_7)s), greaterOrEquals(timestamp, assumeNotNull(parseDateTime64BestEffortOrNull(%(hogql_val_8)s, 6, %(hogql_val_9)s))), lessOrEquals(timestamp, assumeNotNull(parseDateTime64BestEffortOrNull(%(hogql_val_10)s, 6, %(hogql_val_11)s))))) AS e__events ON"
self.assertIn(expected_join_condition, response.clickhouse)
self.assertIn(expected_join_condition, str(response.clickhouse))

result = query_runner.calculate()

Expand Down

0 comments on commit 91c5bcc

Please sign in to comment.