Joel Lubinitsky

Results 12 comments of Joel Lubinitsky

Sharing my user experience with this: I was initially disappointed when reading the docs that only `--branch` could be specified for `GIT CLONE`, as my use-case requires pulling a specific...

Will we need to extend the schema of the `PutResult` message in order to encapsulate the `DoPutPreparedStatementResult` payload? This is the spec right now: ```proto service FlightService { rpc DoPut(stream...

With that framing it makes sense, thanks @lidavidm.

I'm currently facing some design choices related to this and this is roughly where my thinking is at this point: _TLDR at bottom..._ Generally, uniquely qualifying function names is not...

Thanks for the response @westonpace. I pretty much agree with all of this, and would like to clarify that I don't think there's actually any ambiguity in the spec as...

> From the SQL side of things, this avg could be either the one in functions_arithmetic or (the hypothetical) functions_postgres. What the producer chooses will be depend on what behaviour...

> Not a fan. The intention has always been to create common function libraries in the substrait core project. So, postgres-functions, snowflake-functions, etc. In fact, I'm actually working on snowflake-functions...

I gave this some thought and realized that most of type widths fall into a small set of values (2, 4, 8 bytes). Given this ends up being a looping...

@zeroshade @mapleFU I've pushed up the requested changes and also have both batched reads and writes working by buffering the data for each page. See `file_writer_test.go` for confirmation of this...

> @joellubi For arrow C++ usecase, encode is implemented like this patch now, decode, however is implemented by batch: Thanks @mapleFU. I think it would be nice to keep the...