Fix error for offset_fetch without only/with ties

This commit is contained in:
hexiaoting 2020-10-14 15:05:02 +08:00
parent dea965832a
commit 2c72cdef44

View File

@ -305,6 +305,10 @@ bool ParserSelectQuery::parseImpl(Pos & pos, ASTPtr & node, Expected & expected)
{
select_query->limit_with_ties = false;
}
else
{
return false;
}
}
}