【问题标题】:Elixir, error with postgresql: has invalid types for the connectionElixir,postgresql 错误:连接的类型无效
【发布时间】:2017-04-03 21:48:58
【问题描述】:

我遇到以下问题:

ArgumentError{message: \"query %Postgrex.Query{columns: ["id", "name", "internal", "inserted_at", "updated_at"], name: "ecto_616034", param_formats: [:binary], param_oids: [25], param_types: [Postgrex.Extensions.Raw], ref: #Reference<0.0.1.107309>, result_formats: [:binary, :binary, :binary, :binary, :binary], result_oids: [23, 1043, 16, 1184, 1184], result_types: [Postgrex.Extensions.Int4, Postgrex.Extensions.Raw, Postgrex.Extensions.Bool, Ecto.Adapters.Postgres.TimestampTZ, Ecto.Adapters.Postgres.TimestampTZ], statement: "SELECT r0.\"id\", r0.\"name\", r0.\"internal\", r0.\"inserted_at\", r0.\"updated_at\" FROM \"roles\" AS r0 WHERE (r0.\"name\" = $1)", types: {Ecto.Adapters.Postgres.TypeModule, 35356751}} has invalid types for the connection\"}", status: "error"}

我的模型架构定义如下:

  schema "roles" do
    field :name, :string
    field :internal, :boolean
    many_to_many :user_organizations, User.Models.UserOrganization, join_through: "roles_users_organizations"
    many_to_many :sessions, User.Models.Session, join_through: "roles_sessions"

    timestamps()
  end

测试在我的本地机器上运行正常,但每次在信号量上都会发生。我正在使用带有“postgis”图像的docker-compose,我已经尝试过使用“postgres”图像,结果相同。

非常感谢任何建议。

谢谢!

【问题讨论】:

  • 您在 semaphore-ci 和您的开发机器上使用了哪些版本的 postgres?
  • 我尝试的图像:mdillon/postgis:9.1 postgres/9.6 在本地机器上,我使用 postgres.app 和 postgres (PostgreSQL) 9.6.1。一个完整的log

标签: postgresql elixir ecto semaphore-ci postgrex


【解决方案1】:

我在伞形应用程序中发生了这种情况,其中一个项目的种子.exs 文件错误地为伞形应用程序中的另一个应用程序调用了 Repo 模块。

所以,

cat app1/priv/repo/seeds.exs

### Using The right Repo module ###
App1.Stuffs.query_stuff()
|> App1.Repo.one() # <== Should look like this -- Use App1.Repo module

### Using the wrong Repo module ###
App1.ThingStuffs.query_things() 
|> App2.Repo.one() # <== this was causing this error for me

【讨论】:

    猜你喜欢
    • 2019-09-02
    • 1970-01-01
    • 2021-12-03
    • 2021-02-28
    • 1970-01-01
    • 2018-09-29
    • 2020-02-29
    • 1970-01-01
    • 2012-11-09
    相关资源
    最近更新 更多