fix a typo in window functions frame

This commit is contained in:
Alexander Kuzmenkov 2021-03-10 01:24:46 +03:00
parent ca98bb68d4
commit 8c5240e3a0

View File

@ -81,7 +81,7 @@ void ASTWindowDefinition::formatImpl(const FormatSettings & settings,
} }
else if (frame.end_type == WindowFrame::BoundaryType::Unbounded) else if (frame.end_type == WindowFrame::BoundaryType::Unbounded)
{ {
settings.ostr << "UNBOUNDED PRECEDING"; settings.ostr << "UNBOUNDED FOLLOWING";
} }
else else
{ {