We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9cc504 commit 9d68a56Copy full SHA for 9d68a56
1 file changed
src/parser/mod.rs
@@ -15833,10 +15833,7 @@ impl<'a> Parser<'a> {
15833
None
15834
};
15835
15836
- self.expect_keyword_is(Keyword::FOREIGN)?;
15837
- self.expect_keyword_is(Keyword::DATA)?;
15838
- self.expect_keyword_is(Keyword::WRAPPER)?;
15839
-
+ self.expect_keywords(&[Keyword::FOREIGN, Keyword::DATA, Keyword::WRAPPER])?;
15840
let fdw_name = self.parse_object_name(false)?;
15841
15842
let mut options = None;
0 commit comments