File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ size_t Filter::designateSubtrees(Node* node, size_t index)
6767 path.emplace (node, 0 );
6868
6969 while (!path.empty ()) {
70- auto & top = path.top ();
70+ auto top = path.top ();
7171 top.node_ptr ->index = local_index;
7272 path.pop ();
7373 if (top.node_ptr ->condition != nullptr ) {
@@ -277,7 +277,7 @@ Operations createOperations(Filter const& expression)
277277
278278 // while the stack is not empty
279279 while (!path.empty ()) {
280- auto & top = path.top ();
280+ auto top = path.top ();
281281
282282 // create operation spec, pop the node and add its children
283283 auto operationSpec =
@@ -458,7 +458,7 @@ std::shared_ptr<gandiva::Filter>
458458{
459459 std::shared_ptr<gandiva::Filter> filter;
460460 auto s = gandiva::Filter::Make (Schema,
461- std::move ( condition) ,
461+ condition,
462462 &filter);
463463 if (!s.ok ()) {
464464 throw runtime_error_f (" Failed to create filter: %s" , s.ToString ().c_str ());
You can’t perform that action at this time.
0 commit comments