Skip to content

Commit 6eecf9f

Browse files
committed
Fix external table
1 parent 699960c commit 6eecf9f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

datafusion/sql/src/parser.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ impl<'a> DFParser<'a> {
473473
if let Token::Word(w) = self.parser.peek_nth_token(2).token {
474474
// use native parser for CREATE EXTERNAL VOLUME
475475
if w.keyword == Keyword::VOLUME {
476-
/ return self.parse_and_handle_statement();
476+
return self.parse_and_handle_statement();
477477
}
478478
}
479479
self.parser.next_token(); // CREATE

0 commit comments

Comments
 (0)