Greg Rychlewski
Greg Rychlewski
fwiw I can get this to work if the empty string in `coalesce` is replaced with single quotes this works: ```elixir {:ok, conn} = Exqlite.Sqlite3.open(":memory:") :ok = Exqlite.Sqlite3.execute(conn, "create table...
Hi, I was taking a look at implementing this and noticed something about the way Omniauth does things. They seem to be using the `hd` parameter as a way of...
@tomtaylor you can give the changes in this PR a try: https://github.com/elixir-sqlite/ecto_sqlite3/pull/84
@warmwaffles There is another issue. An `insert_all` integration test was added that uses select statements for values and it doesn't seem like your adapter supports that. The `insert_select` tag was...
There are two other failures: - Stacktraces were added to logging and the test didn't take into account that adapters like yours will have their integration tests nested under the...
I think the actions are only running the first time the PR is opened because of this ``` pull_request: types: - opened ``` I think you need the `synchronize` activity...
btw failed integration tests 1 and 3 can be fixed by updating to the latest commit on ecto/ecto_sql: https://github.com/elixir-ecto/ecto/pull/3942 https://github.com/elixir-ecto/ecto_sql/pull/426
@maennchen I sent a PR to your fork to fix the broken unit tests. the planner now returns the cast and dump version of the parameters and it was causing...
@maennchen if you rebase on master the tests should all pass now
@maennchen oh it looks like the PR I sent you was reverted: https://github.com/maennchen/ecto_sqlite3/pull/1/files. if that change is re-implemented it should all pass