pitrou commented on a change in pull request #11032:
URL: https://github.com/apache/arrow/pull/11032#discussion_r728975195
##########
File path: cpp/src/arrow/compute/exec/sink_node.cc
##########
@@ -69,7 +69,22 @@ class SinkNode : public ExecNode {
util::BackpressureOptions backpressure) {
PushGenerator<util::optional<ExecBatch>> push_gen(std::move(backpressure));
auto out = push_gen.producer();
- *out_gen = std::move(push_gen);
+ *out_gen = [push_gen] {
+ // TODO(ARROW-14070) Awful workaround for MSVC 19.0 (Visual Studio 2015)
bug.
Review comment:
Just undo this change? It seems that would be enough as a fix, unless
I'm missing something.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]