Tom
Tom
I have a fork that will do this. It's not too difficult in my fork. 1. You specify schemas in configuration file like this: ``` ... username: "someone", password: "******",...
Use the latest from GitHub. It has support for Boolean and it works. I see the change here (from 2020): https://github.com/jhartwell/Plsm/commit/cd9b14b72ad28897da677053e1de2c0862fae165 I don't think geo fields are supported - others...
I have traced the issue and have a fix for it (I can make a pull request). The issue is caused by this left join: ``` LEFT JOIN pg_index i...
@brado, isn't your list is missing the "Elixir MongoDB" driver from @ericmj? I thought mongodb_ecto was built on top of that. It seems that Ecto is supporting relational databases, except...
I recently wrote a blog post: https://tomjoro.github.io/2017-02-09-ecto3-mongodb-phoenix/ - This does work well and is stable. But I'm showing how to *use* ecto with mongodb, but *not* use mongodb_ecto (mongodb_ecto is...
Sorry, forgot the test case: ``` test "bug" do capture = ExUnit.CaptureIO.capture_io(fn -> 1..100 |> Enum.each(fn i -> :ok = Que.add(NormalWorker, {:anything}) end) end) assert capture =~ ~r/failure/ end ```...