Moritz Schmale
Moritz Schmale
To support values lists in select from, joins, update from and delete from, I added a `values(list_of_maps, schema)` function that can be used in `in` expressions like ```elixir query =...
Companion ecto PR: https://github.com/elixir-ecto/ecto/pull/3929
Now you can create a custom Ecto.Association that uses lateral joins: ```elixir defmodule MyAssoc do @behaviour Ecto.Association def joins_query(%{owner: owner, owner_key: owner_key, related: related} = assoc, join_parent) do import Ecto.Query...
PostgreSQL has a maximum notification payload size of 8000 bytes by default. Anything above will result in an error. I have successfully worked around this by chunking the payload before...