We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 165164b commit 8396a12Copy full SHA for 8396a12
1 file changed
src/parser/mod.rs
@@ -7079,9 +7079,7 @@ impl<'a> Parser<'a> {
7079
fn parse_optional_create_table_config(
7080
&mut self,
7081
) -> Result<CreateTableConfiguration, ParserError> {
7082
- let inherits = if dialect_of!(self is BigQueryDialect | PostgreSqlDialect | GenericDialect)
7083
- && self.parse_keyword(Keyword::INHERITS)
7084
- {
+ let inherits = if self.parse_keyword(Keyword::INHERITS) {
7085
Some(self.parse_parenthesized_qualified_column_list(IsOptional::Mandatory, false)?)
7086
} else {
7087
None
0 commit comments