Robert Francis
Robert Francis
@nelsonic I haven't gone through the chat-example above myself but I have just had a quick read through it now and I think it looks like a great place to...
Opening a pr with updates for most of the points I raised above. @nelsonic can you give me access to do so 👍 I am going to do the following...
@monting I think that you are having this issue because of the double quotes you have used in your `.env` file... ``` export SOME_ENV_VAR="randomString" ``` should be... ``` export SOME_ENV_VAR=randomString...
@nelsonic @Danwhy Sorry if I am being dense but I haven't actually seen the answers yet. I did look at the module and saw that the `get` function has been...
@nelsonic I have had a brief read through the current example and the alog code and have a few question/thoughts on how things might/will change when we use CIDs. I...
@nelsonic Yeah I'd be up for that. I'll write up my thoughts in issues first though so that others can comment and maybe join if that makes sense 👍
@Danwhy I just got the following error when trying to run a rollback command on the module where I have been testing this dummy adapter... ```sh ** (Postgrex.Error) ERROR 42703...
Looking at @SimonLab 's [comment](https://github.com/dwyl/alog/issues/40#issuecomment-465095643), the following line appears to be where the adapter is called... ```ex {count, rows} = adapter.execute(adapter_meta, query_meta, prepared, params, opts) ``` This calls the following...
The arguments passed to this function are... ```ex [ adapter_meta: %{ cache: #Reference, opts: [timeout: 15000, pool_size: 10, pool: DBConnection.ConnectionPool], pid: #PID, sql: AlogAdapter.Connection, telemetry: {UsingAlogAdapter.Repo, :debug, [], [:using_alog_adapter, :repo,...
### Next step I am going to pass in a subquery to `Repo.all` and compare the two sets or arguments that are passed to the adapters `execute/5` function.