gitmodimo

Results 22 comments of gitmodimo

With stitching I see 3 fields that need individual care: 1. Object stitching Proof of concept is already in samples. I think it should be allowed to stitch object at...

> The tricky part with nested resolvers is, where do you get the instance of a type-erased object from the other schema? Root objects are easy, they're fixed at service...

I finally got some time to dig into my performance issues. Again great work with `ValueTokenStream` implementation. It doesn't directly help in [my particular use case (big array) ](https://github.com/gitmodimo/cppgraphqlgen/commit/3b4442b038815dd9cd86e5f42b5fb27d183588fb), but...

I have concluded my transition to next branch. I am vary happy with the result. SharedTypes and value visitor simplified everything sybstantially. There are few additional changes that could be...

This pull request seems to functionally overlap with [this one](https://github.com/apache/arrow/pull/44083). Some changes are almost exactly the same. Ordering of data is kept in threaded execution with use of batch index....

Since you are fixing dataset write ordering I think [this check](https://github.com/gitmodimo/arrow/blob/53859262ea988f31ce33a469305251064b5a53b8/cpp/src/arrow/acero/accumulation_queue.cc#L90) never fires. It should be moved to InsertBatch. Also probaly `AccumulationQueue`, `SequencingQueue` and `SerialSequencingQueue` should be exported for acero...

I did't find any info about required serialization to string. String is only one example of scalar. I think serializing any custom acalar to string is a walkaround and not...

Let me pitch in. Disclaimer I am working @mroz45 on the same project using arrow. ``` -bool require_sequenced_output = false) +bool require_sequenced_output = true) ``` > Changing this default would...

The addition of ordering to python was more straightforward than I initially anticipated. Current version of pull request should fix at least some of above-mentioned python issues. Please review python...