Skip to content

Commit 31f27c5

Browse files
Update mod.rs
Co-authored-by: Ifeanyi Ubah <ify1992@yahoo.com>
1 parent c8c2f68 commit 31f27c5

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/parser/mod.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7529,11 +7529,6 @@ impl<'a> Parser<'a> {
75297529

75307530
/// Parse a[Statement::DropOperator] statement.
75317531
///
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)
75377532
pub fn parse_drop_operator(&mut self) -> Result<Statement, ParserError> {
75387533
let if_exists = self.parse_keywords(&[Keyword::IF, Keyword::EXISTS]);
75397534
let operators = self.parse_comma_separated(|p| p.parse_operator_signature())?;

0 commit comments

Comments
 (0)