We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8c2f68 commit 31f27c5Copy full SHA for 31f27c5
src/parser/mod.rs
@@ -7529,11 +7529,6 @@ impl<'a> Parser<'a> {
7529
7530
/// Parse a[Statement::DropOperator] statement.
7531
///
7532
- /// ```sql
7533
- /// DROP OPERATOR [ IF EXISTS ] name ( { left_type | NONE } , right_type ) [, ...] [ CASCADE | RESTRICT ]
7534
- /// ```
7535
- ///
7536
- /// [PostgreSQL Documentation](https://www.postgresql.org/docs/current/sql-dropoperator.html)
7537
pub fn parse_drop_operator(&mut self) -> Result<Statement, ParserError> {
7538
let if_exists = self.parse_keywords(&[Keyword::IF, Keyword::EXISTS]);
7539
let operators = self.parse_comma_separated(|p| p.parse_operator_signature())?;
0 commit comments