Steve Hall

Results 17 comments of Steve Hall

And just to add another data point, it appears the same in Postgres: ``` iex(2)> Ecto.Adapters.SQL.query!(MyRepo, "SELECT $1::text" , ["abcdefghijklmnop"]) 07:52:14.988 [debug] QUERY OK db=0.9ms decode=1.6ms SELECT '61626364-6566-6768-696a-6b6c6d6e6f70'::text %Postgrex.Result{ columns:...

Thanks @fuelen. That makes sense. 👍

Hi, I did some digging in the code and I wanted to document what I found in case anyone else is looking into this or #1911 to save them some...

Thank you @ahamez 💚 💙 💜 I haven't managed to produce a test case for the binary case yet but I will keep trying. I see the error when I...

Thank you @ahamez that has fixed the JSON problem. It hasn't helped the binary decode though. I'll try and produce a concrete test case for binary as soon as I...

Hi @ahamez, I have got a test case for the binary decode error. ```elixir defmodule OptionalTest do use ExUnit.Case use Protox, schema: """ syntax = "proto3"; message Msg1 { Msg2...

Amazing, thank you again @ahamez. That has solved all our decoding issues. There is one last thing that might be linked to this. When I compile generated code for a...

I don't have the Kotlin skills to fix this properly, but it looks like the `ELIXIR_CLI_DRY_RUN` environment variable could be leveraged to have elixir itself inform the plugin of the...

> So you have it working with otp 28 now? @jdmarshall yes, there's a pre-release build available to test that works with OTP 28. You can test it by downloading...