We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0eee8a7 commit e779c5cCopy full SHA for e779c5c
3 files changed
integration_test/cases/repo.exs
@@ -6,6 +6,7 @@ defmodule Ecto.Integration.RepoTest do
6
7
alias Ecto.Integration.Post
8
alias Ecto.Integration.Order
9
+ alias Ecto.Integration.Item
10
alias Ecto.Integration.User
11
alias Ecto.Integration.Comment
12
alias Ecto.Integration.Permalink
test/ecto/query/planner_test.exs
@@ -499,7 +499,7 @@ defmodule Ecto.Query.PlannerTest do
499
500
test "plan: generates a cache key" do
501
{_query, _cast_params, _dump_params, key} = plan(from(Post, []))
502
- assert key == [:all, {:from, {"posts", Post, 111065921, "my_prefix"}, []}]
+ assert key == [:all, {:from, {"posts", Post, 23210922, "my_prefix"}, []}]
503
504
query =
505
from(
@@ -525,7 +525,7 @@ defmodule Ecto.Query.PlannerTest do
525
{:limit, {true, 1}},
526
{:where, [{:and, {:is_nil, [], [nil]}}, {:or, {:is_nil, [], [nil]}}]},
527
{:join, [{:inner, {"comments", Comment, 38292156, "world"}, true, ["join hint"]}]},
528
- {:from, {"posts", Post, 111065921, "hello"}, ["hint"]},
+ {:from, {"posts", Post, 23210922, "hello"}, ["hint"]},
529
{:select, 1}]
530
end
531
test/ecto/repo_test.exs
@@ -134,15 +134,6 @@ defmodule Ecto.RepoTest do
134
135
136
137
- defmodule MySchemaVirtualEmbed do
138
- use Ecto.Schema
139
-
140
- schema "my_schema" do
141
- field :x, :string
142
- embeds_one :virtual_embed, MyEmbed, virtual: true
143
- end
144
145
146
defmodule MySchemaNoPK do
147
use Ecto.Schema
148
0 commit comments