Dan Swain

Results 24 issues of Dan Swain

The following query works: ``` erlang pgsql:equery(C, "select name from servers where id = any ($1)", [[1, 2, 4]]). ``` whereas this one does not: ``` erlang pgsql:equery(C, "select name...

### Precheck * Take a look at the open issues and be sure that your issue is not already covered. ✅ * Be sure your versions of Dialyxir and Erlex...

I am trying to run two instances of neo4j with compose so that I can have one for development and one for testing. I'm finding that I'm able to write...

This is a follow-up to #227 (fixed by #230). The current behavior of the parser/generator is to iterate over the list of input files and do a full parse/generate for...

enhancement
rfc

I came across this trying to do something like the following. ``` serialized = BusinessObject.serialize(%BusinessObject{}) deserialized = BusinessObject.deserialize(serialized) ``` The second line produces `:error` because `serialized` is iodata and `deserialize`...

question

Anyone thought about this? I'm doing some stuff with [Parquet](http://parquet.apache.org/documentation/latest/) and that uses the compact protocol under the hood. I'd have to dig deeper into the protocol, but from what...

enhancement

Example use cases are streaming IO and large files. It should be feasible to do something like this: ``` def deserialize_stream(stream, prototype_object \\ %__MODULE__{}) do Stream.transform(stream, {prototype_object, ""}, fn data,...

enhancement
rfc

This is a little off-the-walll, but in the Ruby thrift lib, enum values get printed out as their name, which can be pretty nice for debugging purposes. We could theoretically...

enhancement
rfc

(On thrift_tng) The compile error is ``` ** (Enum.EmptyError) empty error (elixir) lib/enum.ex:1590: Enum.reduce/2 (mix) lib/mix/utils.ex:80: Mix.Utils.stale_stream/2 (mix) lib/mix/utils.ex:66: Mix.Utils.stale?/2 (elixir) lib/enum.ex:787: anonymous fn/3 in Enum.filter/2 (elixir) lib/enum.ex:1623: Enum."-reduce/3-lists^foldl/2-0-"/3 (elixir)...

bug

Travis-CI seems to be getting noticeably slower for OSS builds: https://www.traviscistatus.com/#month I've definitely noticed significant queue times for builds, which is a pretty major slowdown for iterating on PRs. Furthermore,...