Merge pull request #21572 from ClickHouse/aku/frame-typo

fix a typo in window functions frame
This commit is contained in:
Alexander Kuzmenkov 2021-03-10 13:38:39 +03:00 committed by GitHub
commit b399f80b7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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