Skip to content

Commit

Permalink
ARROW-7791: [C++][Parquet] Fix building error "cannot bind lvalue"
Browse files Browse the repository at this point in the history
https://issues.apache.org/jira/browse/ARROW-7791

Closes #6381 from plusplusjiajia/arrow-read-write-test and squashes the following commits:

d08f99c <Li, Jiajia> Fix building error cannot bind lvalue

Authored-by: Li, Jiajia <jiajia.li@intel.com>
Signed-off-by: Sutou Kouhei <kou@clear-code.com>
  • Loading branch information
Li, Jiajia authored and kou committed Feb 9, 2020
1 parent 0adadcf commit 08e32f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/parquet/arrow/arrow_reader_writer_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2897,7 +2897,7 @@ class TestArrowReadDictionary : public ::testing::TestWithParam<double> {
RETURN_NOT_OK(builder.Open(std::make_shared<BufferReader>(buffer_)));
RETURN_NOT_OK(builder.properties(properties_)->Build(&reader));

return reader;
return std::move(reader);
}
};

Expand Down

0 comments on commit 08e32f2

Please sign in to comment.