fix code style

This commit is contained in:
vxider 2021-11-26 18:30:22 +00:00
parent 82a53a5e54
commit d95d181cbe

View File

@ -231,7 +231,8 @@ struct WindowImpl<TUMBLE_START>
}
else
{
return std::static_pointer_cast<const DataTypeTuple>(WindowImpl<TUMBLE>::getReturnType(arguments, function_name))->getElement(0);
return std::static_pointer_cast<const DataTypeTuple>(WindowImpl<TUMBLE>::getReturnType(arguments, function_name))
->getElement(0);
}
}
@ -578,7 +579,7 @@ struct WindowImpl<HOP_START>
}
else
{
return std::static_pointer_cast<const DataTypeTuple>(WindowImpl<HOP>::getReturnType(arguments, function_name))->getElement(0);
return std::static_pointer_cast<const DataTypeTuple>(WindowImpl<HOP>::getReturnType(arguments, function_name))->getElement(0);
}
}