This repository was archived by the owner on Sep 27, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ GroupExpression *Group::GetBestExpression(
58
58
return std::get<1 >(it->second );
59
59
}
60
60
LOG_TRACE (" Didn't get best expression with properties %s" ,
61
- properties. ToString ().c_str ());
61
+ properties-> ToString ().c_str ());
62
62
return nullptr ;
63
63
}
64
64
Original file line number Diff line number Diff line change @@ -260,9 +260,10 @@ void GetToIndexScan::Transform(
260
260
value_expr)
261
261
->GetValue ());
262
262
LOG_TRACE (" Value Type: %d" ,
263
- reinterpret_cast <expression::ConstantValueExpression *>(
264
- expr->GetModifiableChild (1 ))
265
- ->GetValueType ());
263
+ static_cast <int >(
264
+ reinterpret_cast <expression::ConstantValueExpression *>(
265
+ expr->GetModifiedChild (1 ))
266
+ ->GetValueType ()));
266
267
} else {
267
268
value_list.push_back (
268
269
type::ValueFactory::GetParameterOffsetValue (
@@ -271,7 +272,7 @@ void GetToIndexScan::Transform(
271
272
->GetValueIdx ())
272
273
.Copy ());
273
274
LOG_TRACE (" Parameter offset: %s" ,
274
- (*values .rbegin ()).GetInfo ().c_str ());
275
+ (*value_list .rbegin ()).GetInfo ().c_str ());
275
276
}
276
277
}
277
278
} // Loop predicates end
You can’t perform that action at this time.
0 commit comments