Skip to content

Commit

Permalink
adapt to latest clickhouse (#216)
Browse files Browse the repository at this point in the history
  • Loading branch information
ruslandoga authored Dec 21, 2024
1 parent 807bcb6 commit 36fd024
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/ecto/integration/clickhouse_joins_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,8 @@ defmodule Ecto.Integration.ClickHouseJoinsTest do
left_join: n2 in subquery(sq),
on: n1.number == n2.number,
hints: "ANY",
select: [n1.number, n2.joined]
select: [n1.number, n2.joined],
order_by: fragment("ALL")
) == [
[0, 1],
[1, 0],
Expand Down Expand Up @@ -225,7 +226,8 @@ defmodule Ecto.Integration.ClickHouseJoinsTest do
inner_join: b in subquery(sq2),
on: a.k == b.k,
hints: "ANY",
select: [a.k, b.k, b.joined]
select: [a.k, b.k, b.joined],
order_by: fragment("ALL")
) == [
[0, 0, 0],
[2, 2, 1],
Expand Down

0 comments on commit 36fd024

Please sign in to comment.