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 11b9dd2 commit 3ca4928Copy full SHA for 3ca4928
src/parser/mod.rs
@@ -4385,7 +4385,7 @@ impl<'a> Parser<'a> {
4385
self.parse_create_view(or_replace, temporary, create_view_params)
4386
} else if self.parse_keyword(Keyword::POLICY) {
4387
self.parse_create_policy()
4388
- } else if self.parse_keywords(&[Keyword::EXTERNAL, Keyword::TABLE]) {
+ } else if self.parse_keywords(&[Keyword::EXTERNAL, Keyword::TABLE]) {
4389
self.parse_create_external_table(or_replace)
4390
} else if self.parse_keyword(Keyword::FUNCTION) {
4391
self.parse_create_function(or_replace, temporary)
0 commit comments