gitmodimo
gitmodimo
> I think it would also need to be possible to return a type-erased object wrapper by value then, and that version of the wrapper object would need to somehow...
> Couldn't it all be chained to a single top-level std::shared_ptr so they all share the operation's lifetime? Come to think of it, you might even be able to use...
This is a little bit confusing. In order to use multiple clients in single compilation unit I have to: 1. use unique --prefix to avoid include guard conflict 2. use...
I managed to get it up and running in my application. I can suggest few improvements that can be very useful. 1. Wrap client functions in one object. Based on...
This also happened for me. I am using acero C++ api
I think I narrowed down the problem. The as-of-join node does not sequence incoming ExecBatches. [Here](https://github.com/gitmodimo/arrow/commit/4eec282723bfbd3343c6e3a59715070dd9d729f4) is a patch I created. It probably is not the optimal solution. Maybe sequencer...
I have been using cppgraphqlgen in production code for about 2 years. Here are some of my thouths: 1. cppgraphqlgen lacks extensibility. Concept similar to Apollo federation. I think it...
> Interesting, yeah. I'm not sure if having schema extensions be handled differently makes sense, but given 2 separate schemas, it should be possible to merge them at the schema...
I very much like the work you did here. I need to migrate to next branch ASAP and test the changes in my use case. I like how you managed...
> One more caveat about schema stitching: since the include guards will collide on types with the same name, the cleanest/simplest way to handle that is probably to import the...