Skip to content

Commit 44d4445

Browse files
committed
resolve conflicts from rebase
1 parent 11538fa commit 44d4445

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

cpp/src/arrow/compute/kernels/scalar_arithmetic.cc

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2235,10 +2235,6 @@ void RegisterScalarArithmetic(FunctionRegistry* registry) {
22352235
DCHECK_OK(registry->AddFunction(std::move(divide_checked)));
22362236

22372237
// ----------------------------------------------------------------------
2238-
<<<<<<< HEAD
2239-
auto negate = MakeUnaryArithmeticFunction<Negate>("negate", negate_doc);
2240-
AddDecimalUnaryKernels<Negate>(negate.get());
2241-
=======
22422238
auto floor_divide =
22432239
MakeArithmeticFunctionNotNull<FloorDivide>("floor_divide", &floor_div_doc);
22442240
DCHECK_OK(registry->AddFunction(std::move(floor_divide)));
@@ -2259,7 +2255,7 @@ void RegisterScalarArithmetic(FunctionRegistry* registry) {
22592255

22602256
// ----------------------------------------------------------------------
22612257
auto negate = MakeUnaryArithmeticFunction<Negate>("negate", &negate_doc);
2262-
>>>>>>> 853bfca88 (add floor_divide and remainder compute functions)
2258+
AddDecimalUnaryKernels<Negate>(negate.get());
22632259
DCHECK_OK(registry->AddFunction(std::move(negate)));
22642260

22652261
// ----------------------------------------------------------------------

0 commit comments

Comments
 (0)