We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2760d56 commit cdfd75fCopy full SHA for cdfd75f
src/dialect/snowflake.rs
@@ -319,8 +319,7 @@ impl Dialect for SnowflakeDialect {
319
320
// `FETCH` can be considered an alias as long as it's not followed by `FIRST`` or `NEXT`
321
// which would give it a different meanings, for example: `SELECT 1 FETCH FIRST 10 ROWS` - not an alias
322
- Keyword::FETCH
323
- if parser.peek_keyword(Keyword::FIRST) || parser.peek_keyword(Keyword::NEXT) =>
+ Keyword::FETCH if parser.peek_one_of_keywords(&[Keyword::FIRST, Keyword::NEXT]).is_some() =>
324
{
325
false
326
}
0 commit comments