Ecto changesets和Dialyzer错误

时间:2017-02-28 19:38:10

标签: elixir ecto dialyzer

我有一个伞形应用程序。我看到了Dialyzer的价值,我正试图开始使用它。我已经走得很远,但我在Ecto周围有一个问题我无法解决。

这适用于处理身份验证的小型应用程序。我可以在最简单的例子中修改它。

使用Elixir 1.4.2和Dialyxir 0.4.0。

问题中的代码

defmodule Auth.Account do
  use Ecto.Schema
  import Ecto.Changeset

  schema "auth_accounts" do
    field :email, :string
    field :password_hash, :string
    field :password, :string, virtual: true

    timestamps()
  end

  def build(params \\ %{}) do
    changeset(%__MODULE__{}, params)
  end

  def changeset(account, params \\ %{}) do
    account
    |> cast(params, ~w(email password))
  end
end

相关错误输出

lib/auth/account.ex:13: Function build/0 has no local return
lib/auth/account.ex:13: Function build/1 has no local return
lib/auth/account.ex:14: The call 'Elixir.Auth.Account':changeset(#{'__meta__':=#{'__struct__':='Elixir.Ecto.Schema.Metadata', 'context':='nil', 'source':={'nil',<<_:104>>}, 'state':='built'}, '__struct__':='Elixir.Auth.Account', 'email':='nil', 'id':='nil', 'inserted_at':='nil', 'password':='nil', 'password_hash':='nil', 'updated_at':='nil'},params@1::any()) 
  will never return since it differs in the 1st argument from the success typing arguments: ({map(),map()} | #{'__struct__':=atom(), 'action'=>'delete' | 'insert' | 'nil' | 'replace' | 'update', 'changes'=>#{atom()=>_}, 'constraints'=>[#{'constraint':=binary(), 'field':=atom(), 'match':='exact' | 'suffix', 'message':={_,_}, 'type':='unique'}], 'data'=>'nil' | #{'__struct__':=atom()}, 'empty_values'=>_, 'errors'=>[{atom(),{_,_}}], 'filters'=>#{atom()=>_}, 'params'=>'nil' | #{binary()=>_}, 'prepare'=>[fun((map()) -> map())], 'repo'=>atom(), 'required'=>[atom()], 'types'=>'nil' | #{atom()=>atom() | {'array',_} | {'embed',map()} | {'in',_} | {'map',_}}, 'valid?'=>boolean(), 'validations'=>[{atom(),_}]},'invalid' | #{'__struct__'=>none(), atom() | binary()=>_})

问题出现在build函数使用%__MODULE__{}周围。请参阅此相关Stack Overflow Topic

但是,我无法弄清楚有效的替代语法。

1 个答案:

答案 0 :(得分:1)

Dogbert促使我通过无法重现它来深入挖掘。

我在ecto~&gt; 2.0。 mix.lock文件让我在2.0.5。在mix deps.unlock --allmix deps.clean --all以及mix deps.get之后,我被提升到了2.1.3。

图书馆升级后,透析器不再抱怨此事。所以我的修复是升级到更新的ecto版本。