We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be77ce5 commit db3d7ceCopy full SHA for db3d7ce
src/parser/mod.rs
@@ -8839,6 +8839,7 @@ impl<'a> Parser<'a> {
8839
8840
/// A table name or a parenthesized subquery, followed by optional `[AS] alias`
8841
pub fn parse_table_factor(&mut self) -> Result<TableFactor, ParserError> {
8842
+ let _guard = self.recursion_counter.try_decrease()?;
8843
if self.parse_keyword(Keyword::LATERAL) {
8844
// LATERAL must always be followed by a subquery or table function.
8845
if self.consume_token(&Token::LParen) {
0 commit comments