We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a46595e commit 76342dcCopy full SHA for 76342dc
1 file changed
integration_test/sql/subquery.exs
@@ -107,6 +107,7 @@ defmodule Ecto.Integration.SubQueryTest do
107
query = from p in Post, where: p.visits >= ^11 and p.visits <= ^13
108
query = from c in Comment,
109
join: p in subquery(query),
110
+ on: true,
111
where: p.title == ^"hello",
112
select: fragment("? + ?", p.visits, ^1)
113
assert [12, 12] = TestRepo.all(query)
0 commit comments