defmodule AshPostgres.Test.UpsertTest do use AshPostgres.RepoCase, async: false alias AshPostgres.Test.{Api, Post} require Ash.Query test "upserting results in the same created_at timestamp, but a new updated_at timestamp" do id = Ash.UUID.generate() new_post = Post |> Ash.Changeset.for_create(:create, %{ id: id, title: "title2" }) |> Api.create!(upsert?: true) assert new_post.id == id assert new_post.created_at == new_post.updated_at updated_post = Post |> Ash.Changeset.for_create(:create, %{ id: id, title: "title2" }) |> Api.create!(upsert?: true) assert updated_post.id == id assert updated_post.created_at == new_post.created_at assert updated_post.created_at != updated_post.updated_at end end